From 8ee49b11dad42477a005a5270972eed4aa062fd8 Mon Sep 17 00:00:00 2001 From: gwbvipvip Date: Thu, 28 Dec 2023 10:59:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BPA.KitChen.StoreManagement.sln | 25 ++++++ .../BPA.KitChen.StoreManagement.csproj | 9 ++ .../Controllers/WeatherForecastController.cs | 33 +++++++ BPA.KitChen.StoreManagement/Program.cs | 17 ++++ .../Properties/launchSettings.json | 31 +++++++ .../WeatherForecast.cs | 13 +++ .../appsettings.Development.json | 8 ++ BPA.KitChen.StoreManagement/appsettings.json | 9 ++ ...n.StoreManagement.csproj.nuget.dgspec.json | 71 +++++++++++++++ ...tChen.StoreManagement.csproj.nuget.g.props | 16 ++++ ...hen.StoreManagement.csproj.nuget.g.targets | 2 + ...CoreApp,Version=v6.0.AssemblyAttributes.cs | 4 + ...PA.KitChen.StoreManagement.AssemblyInfo.cs | 23 +++++ ...n.StoreManagement.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 17 ++++ ....KitChen.StoreManagement.GlobalUsings.g.cs | 17 ++++ .../BPA.KitChen.StoreManagement.assets.cache | Bin 0 -> 487 bytes .../obj/project.assets.json | 85 ++++++++++++++++++ .../obj/project.nuget.cache | 15 ++++ 19 files changed, 396 insertions(+) create mode 100644 BPA.KitChen.StoreManagement.sln create mode 100644 BPA.KitChen.StoreManagement/BPA.KitChen.StoreManagement.csproj create mode 100644 BPA.KitChen.StoreManagement/Controllers/WeatherForecastController.cs create mode 100644 BPA.KitChen.StoreManagement/Program.cs create mode 100644 BPA.KitChen.StoreManagement/Properties/launchSettings.json create mode 100644 BPA.KitChen.StoreManagement/WeatherForecast.cs create mode 100644 BPA.KitChen.StoreManagement/appsettings.Development.json create mode 100644 BPA.KitChen.StoreManagement/appsettings.json create mode 100644 BPA.KitChen.StoreManagement/obj/BPA.KitChen.StoreManagement.csproj.nuget.dgspec.json create mode 100644 BPA.KitChen.StoreManagement/obj/BPA.KitChen.StoreManagement.csproj.nuget.g.props create mode 100644 BPA.KitChen.StoreManagement/obj/BPA.KitChen.StoreManagement.csproj.nuget.g.targets create mode 100644 BPA.KitChen.StoreManagement/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs create mode 100644 BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.AssemblyInfo.cs create mode 100644 BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.AssemblyInfoInputs.cache create mode 100644 BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.GlobalUsings.g.cs create mode 100644 BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.assets.cache create mode 100644 BPA.KitChen.StoreManagement/obj/project.assets.json create mode 100644 BPA.KitChen.StoreManagement/obj/project.nuget.cache diff --git a/BPA.KitChen.StoreManagement.sln b/BPA.KitChen.StoreManagement.sln new file mode 100644 index 0000000..b6a00fb --- /dev/null +++ b/BPA.KitChen.StoreManagement.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34024.191 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BPA.KitChen.StoreManagement", "BPA.KitChen.StoreManagement\BPA.KitChen.StoreManagement.csproj", "{0D9FD118-54D6-4969-BCC4-B4838BDAE886}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0D9FD118-54D6-4969-BCC4-B4838BDAE886}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0D9FD118-54D6-4969-BCC4-B4838BDAE886}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0D9FD118-54D6-4969-BCC4-B4838BDAE886}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0D9FD118-54D6-4969-BCC4-B4838BDAE886}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {D04197CA-CC73-484D-96BD-9F5FE718A1F5} + EndGlobalSection +EndGlobal diff --git a/BPA.KitChen.StoreManagement/BPA.KitChen.StoreManagement.csproj b/BPA.KitChen.StoreManagement/BPA.KitChen.StoreManagement.csproj new file mode 100644 index 0000000..c78c9c7 --- /dev/null +++ b/BPA.KitChen.StoreManagement/BPA.KitChen.StoreManagement.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/BPA.KitChen.StoreManagement/Controllers/WeatherForecastController.cs b/BPA.KitChen.StoreManagement/Controllers/WeatherForecastController.cs new file mode 100644 index 0000000..95145e5 --- /dev/null +++ b/BPA.KitChen.StoreManagement/Controllers/WeatherForecastController.cs @@ -0,0 +1,33 @@ +using Microsoft.AspNetCore.Mvc; + +namespace BPA.KitChen.StoreManagement.Controllers +{ + [ApiController] + [Route("[controller]")] + public class WeatherForecastController : ControllerBase + { + private static readonly string[] Summaries = new[] + { + "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" + }; + + private readonly ILogger _logger; + + public WeatherForecastController(ILogger logger) + { + _logger = logger; + } + + [HttpGet] + public IEnumerable Get() + { + return Enumerable.Range(1, 5).Select(index => new WeatherForecast + { + Date = DateTime.Now.AddDays(index), + TemperatureC = Random.Shared.Next(-20, 55), + Summary = Summaries[Random.Shared.Next(Summaries.Length)] + }) + .ToArray(); + } + } +} \ No newline at end of file diff --git a/BPA.KitChen.StoreManagement/Program.cs b/BPA.KitChen.StoreManagement/Program.cs new file mode 100644 index 0000000..ac7c10a --- /dev/null +++ b/BPA.KitChen.StoreManagement/Program.cs @@ -0,0 +1,17 @@ +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. + +builder.Services.AddControllers(); + +var app = builder.Build(); + +// Configure the HTTP request pipeline. + +app.UseHttpsRedirection(); + +app.UseAuthorization(); + +app.MapControllers(); + +app.Run(); diff --git a/BPA.KitChen.StoreManagement/Properties/launchSettings.json b/BPA.KitChen.StoreManagement/Properties/launchSettings.json new file mode 100644 index 0000000..bdda553 --- /dev/null +++ b/BPA.KitChen.StoreManagement/Properties/launchSettings.json @@ -0,0 +1,31 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:9922", + "sslPort": 44371 + } + }, + "profiles": { + "BPA.KitChen.StoreManagement": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "weatherforecast", + "applicationUrl": "https://localhost:7131;http://localhost:5248", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "weatherforecast", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/BPA.KitChen.StoreManagement/WeatherForecast.cs b/BPA.KitChen.StoreManagement/WeatherForecast.cs new file mode 100644 index 0000000..0c35024 --- /dev/null +++ b/BPA.KitChen.StoreManagement/WeatherForecast.cs @@ -0,0 +1,13 @@ +namespace BPA.KitChen.StoreManagement +{ + public class WeatherForecast + { + public DateTime Date { get; set; } + + public int TemperatureC { get; set; } + + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + + public string? Summary { get; set; } + } +} \ No newline at end of file diff --git a/BPA.KitChen.StoreManagement/appsettings.Development.json b/BPA.KitChen.StoreManagement/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/BPA.KitChen.StoreManagement/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/BPA.KitChen.StoreManagement/appsettings.json b/BPA.KitChen.StoreManagement/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/BPA.KitChen.StoreManagement/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/BPA.KitChen.StoreManagement/obj/BPA.KitChen.StoreManagement.csproj.nuget.dgspec.json b/BPA.KitChen.StoreManagement/obj/BPA.KitChen.StoreManagement.csproj.nuget.dgspec.json new file mode 100644 index 0000000..db26ead --- /dev/null +++ b/BPA.KitChen.StoreManagement/obj/BPA.KitChen.StoreManagement.csproj.nuget.dgspec.json @@ -0,0 +1,71 @@ +{ + "format": 1, + "restore": { + "D:\\Work\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement.csproj": {} + }, + "projects": { + "D:\\Work\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Work\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement.csproj", + "projectName": "BPA.KitChen.StoreManagement", + "projectPath": "D:\\Work\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement.csproj", + "packagesPath": "C:\\Users\\gwbvi\\.nuget\\packages\\", + "outputPath": "D:\\Work\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "E:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\gwbvi\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "http://10.2.1.25:10243/repository/bpa/index.json": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/BPA.KitChen.StoreManagement/obj/BPA.KitChen.StoreManagement.csproj.nuget.g.props b/BPA.KitChen.StoreManagement/obj/BPA.KitChen.StoreManagement.csproj.nuget.g.props new file mode 100644 index 0000000..f107a4b --- /dev/null +++ b/BPA.KitChen.StoreManagement/obj/BPA.KitChen.StoreManagement.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\gwbvi\.nuget\packages\;E:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.7.0 + + + + + + \ No newline at end of file diff --git a/BPA.KitChen.StoreManagement/obj/BPA.KitChen.StoreManagement.csproj.nuget.g.targets b/BPA.KitChen.StoreManagement/obj/BPA.KitChen.StoreManagement.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/BPA.KitChen.StoreManagement/obj/BPA.KitChen.StoreManagement.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/BPA.KitChen.StoreManagement/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/BPA.KitChen.StoreManagement/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..ed92695 --- /dev/null +++ b/BPA.KitChen.StoreManagement/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")] diff --git a/BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.AssemblyInfo.cs b/BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.AssemblyInfo.cs new file mode 100644 index 0000000..c834ab9 --- /dev/null +++ b/BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("BPA.KitChen.StoreManagement")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("BPA.KitChen.StoreManagement")] +[assembly: System.Reflection.AssemblyTitleAttribute("BPA.KitChen.StoreManagement")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.AssemblyInfoInputs.cache b/BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.AssemblyInfoInputs.cache new file mode 100644 index 0000000..576bd01 --- /dev/null +++ b/BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +51577280f4c201399bb811e0afbf6b91b54df8e1 diff --git a/BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.GeneratedMSBuildEditorConfig.editorconfig b/BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..5680053 --- /dev/null +++ b/BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = BPA.KitChen.StoreManagement +build_property.RootNamespace = BPA.KitChen.StoreManagement +build_property.ProjectDir = D:\Work\BPA.KitChen.StoreManagement\BPA.KitChen.StoreManagement\ +build_property.RazorLangVersion = 6.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = D:\Work\BPA.KitChen.StoreManagement\BPA.KitChen.StoreManagement +build_property._RazorSourceGeneratorDebug = diff --git a/BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.GlobalUsings.g.cs b/BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.assets.cache b/BPA.KitChen.StoreManagement/obj/Debug/net6.0/BPA.KitChen.StoreManagement.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..04f29cb41375d658ed5d315f89e05a5856a943d4 GIT binary patch literal 487 zcmWIWc6a1qU|=Y>3zbUrW)RR#&~*MOxqihPjojp|_RH@dGF{icE@;QIJ&Zs_L;@zD zI(cWSn9$Lp>u? zD?pF literal 0 HcmV?d00001 diff --git a/BPA.KitChen.StoreManagement/obj/project.assets.json b/BPA.KitChen.StoreManagement/obj/project.assets.json new file mode 100644 index 0000000..33ceed4 --- /dev/null +++ b/BPA.KitChen.StoreManagement/obj/project.assets.json @@ -0,0 +1,85 @@ +{ + "version": 3, + "targets": { + "net6.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net6.0": [] + }, + "packageFolders": { + "C:\\Users\\gwbvi\\.nuget\\packages\\": {}, + "E:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Work\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement.csproj", + "projectName": "BPA.KitChen.StoreManagement", + "projectPath": "D:\\Work\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement.csproj", + "packagesPath": "C:\\Users\\gwbvi\\.nuget\\packages\\", + "outputPath": "D:\\Work\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "E:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\gwbvi\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "http://10.2.1.25:10243/repository/bpa/index.json": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.400\\RuntimeIdentifierGraph.json" + } + } + }, + "logs": [ + { + "code": "NU1803", + "level": "Warning", + "warningLevel": 1, + "message": "正在通过 “HTTP” 源“http://10.2.1.25:10243/repository/bpa/index.json”运行“restore”操作。将来的版本中将删除非 HTTPS 访问权限。请考虑迁移到 “HTTPS” 源。" + } + ] +} \ No newline at end of file diff --git a/BPA.KitChen.StoreManagement/obj/project.nuget.cache b/BPA.KitChen.StoreManagement/obj/project.nuget.cache new file mode 100644 index 0000000..dc734a3 --- /dev/null +++ b/BPA.KitChen.StoreManagement/obj/project.nuget.cache @@ -0,0 +1,15 @@ +{ + "version": 2, + "dgSpecHash": "SoeraJ77O50s3sC8sOYlnFRF0Uwg9mGVdJhpGJkvt8FYKUDEtuPTu0eZeBcktwEdFdBDAOiSLFitpXtvaryV6w==", + "success": true, + "projectFilePath": "D:\\Work\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement\\BPA.KitChen.StoreManagement.csproj", + "expectedPackageFiles": [], + "logs": [ + { + "code": "NU1803", + "level": "Warning", + "warningLevel": 1, + "message": "正在通过 “HTTP” 源“http://10.2.1.25:10243/repository/bpa/index.json”运行“restore”操作。将来的版本中将删除非 HTTPS 访问权限。请考虑迁移到 “HTTPS” 源。" + } + ] +} \ No newline at end of file