From 4126109ce9c23610e8d4b2ba222c8245f71c2e63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BD=87=E9=98=B3=20=E9=82=B9?= Date: Thu, 2 Nov 2023 00:23:18 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E8=87=AA=E5=8A=A8=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WebApplication1/.config/dotnet-tools.json | 5 + WebApplication1/Dockerfile | 4 +- WebApplication1/Program.cs | 6 +- .../PublishProfiles/FolderProfile.pubxml | 21 +++ .../PublishProfiles/FolderProfile.pubxml.user | 11 ++ WebApplication1/WebApplication1.csproj | 7 + WebApplication1/WebApplication1.csproj.user | 3 +- WebApplication1/bin/Debug/net6.0/Dockerfile | 26 ++++ .../Debug/net6.0/WebApplication1.deps.json | 4 +- WebApplication1/bin/Release/net6.0/Dockerfile | 26 ++++ .../Release/net6.0/WebApplication1.deps.json | 140 ++++++++++++++++++ .../net6.0/WebApplication1.runtimeconfig.json | 20 +++ .../net6.0/appsettings.Development.json | 8 + .../bin/Release/net6.0/appsettings.json | 14 ++ .../bin/Release/net6.0/publish/Dockerfile | 26 ++++ .../net6.0/publish/WebApplication1.deps.json | 140 ++++++++++++++++++ .../WebApplication1.runtimeconfig.json | 20 +++ .../publish/appsettings.Development.json | 8 + .../Release/net6.0/publish/appsettings.json | 14 ++ .../bin/Release/net6.0/publish/web.config | 12 ++ .../Container/ContainerCreationResult.cache | 0 .../Container/ContainerDevelopmentMode.cache | 0 .../obj/Container/ContainerId.cache | 0 .../obj/Container/ContainerName.cache | 0 .../ContainerOperatingSystemFlavor.cache | 1 + .../obj/Container/ContainerRunContext.cache | 0 .../obj/Container/OperatingSystemName.cache | 1 + .../obj/Container/TargetFramework.cache | 1 + .../obj/Release/net6.0/PubTmp/Out/Dockerfile | 26 ++++ .../PubTmp/Out/WebApplication1.deps.json | 140 ++++++++++++++++++ .../Out/WebApplication1.runtimeconfig.json | 20 +++ .../PubTmp/Out/appsettings.Development.json | 8 + .../net6.0/PubTmp/Out/appsettings.json | 14 ++ .../obj/Release/net6.0/PubTmp/Out/web.config | 12 ++ ...ion1.MvcApplicationPartsAssemblyInfo.cache | 0 ...cation1.MvcApplicationPartsAssemblyInfo.cs | 17 +++ .../WebApplication1.csproj.CopyComplete | 0 ...pplication1.csproj.CoreCompileInputs.cache | 1 + .../WebApplication1.genruntimeconfig.cache | 1 + .../Release/net6.0/staticwebassets.build.json | 11 ++ .../net6.0/staticwebassets.publish.json | 11 ++ .../msbuild.build.WebApplication1.props | 3 + ....buildMultiTargeting.WebApplication1.props | 3 + ...uild.buildTransitive.WebApplication1.props | 3 + WebApplication1/obj/project.assets.json | 2 +- 45 files changed, 783 insertions(+), 7 deletions(-) create mode 100644 WebApplication1/.config/dotnet-tools.json create mode 100644 WebApplication1/Properties/PublishProfiles/FolderProfile.pubxml create mode 100644 WebApplication1/Properties/PublishProfiles/FolderProfile.pubxml.user create mode 100644 WebApplication1/bin/Debug/net6.0/Dockerfile create mode 100644 WebApplication1/bin/Release/net6.0/Dockerfile create mode 100644 WebApplication1/bin/Release/net6.0/WebApplication1.deps.json create mode 100644 WebApplication1/bin/Release/net6.0/WebApplication1.runtimeconfig.json create mode 100644 WebApplication1/bin/Release/net6.0/appsettings.Development.json create mode 100644 WebApplication1/bin/Release/net6.0/appsettings.json create mode 100644 WebApplication1/bin/Release/net6.0/publish/Dockerfile create mode 100644 WebApplication1/bin/Release/net6.0/publish/WebApplication1.deps.json create mode 100644 WebApplication1/bin/Release/net6.0/publish/WebApplication1.runtimeconfig.json create mode 100644 WebApplication1/bin/Release/net6.0/publish/appsettings.Development.json create mode 100644 WebApplication1/bin/Release/net6.0/publish/appsettings.json create mode 100644 WebApplication1/bin/Release/net6.0/publish/web.config create mode 100644 WebApplication1/obj/Container/ContainerCreationResult.cache create mode 100644 WebApplication1/obj/Container/ContainerDevelopmentMode.cache create mode 100644 WebApplication1/obj/Container/ContainerId.cache create mode 100644 WebApplication1/obj/Container/ContainerName.cache create mode 100644 WebApplication1/obj/Container/ContainerOperatingSystemFlavor.cache create mode 100644 WebApplication1/obj/Container/ContainerRunContext.cache create mode 100644 WebApplication1/obj/Container/OperatingSystemName.cache create mode 100644 WebApplication1/obj/Container/TargetFramework.cache create mode 100644 WebApplication1/obj/Release/net6.0/PubTmp/Out/Dockerfile create mode 100644 WebApplication1/obj/Release/net6.0/PubTmp/Out/WebApplication1.deps.json create mode 100644 WebApplication1/obj/Release/net6.0/PubTmp/Out/WebApplication1.runtimeconfig.json create mode 100644 WebApplication1/obj/Release/net6.0/PubTmp/Out/appsettings.Development.json create mode 100644 WebApplication1/obj/Release/net6.0/PubTmp/Out/appsettings.json create mode 100644 WebApplication1/obj/Release/net6.0/PubTmp/Out/web.config create mode 100644 WebApplication1/obj/Release/net6.0/WebApplication1.MvcApplicationPartsAssemblyInfo.cache create mode 100644 WebApplication1/obj/Release/net6.0/WebApplication1.MvcApplicationPartsAssemblyInfo.cs create mode 100644 WebApplication1/obj/Release/net6.0/WebApplication1.csproj.CopyComplete create mode 100644 WebApplication1/obj/Release/net6.0/WebApplication1.csproj.CoreCompileInputs.cache create mode 100644 WebApplication1/obj/Release/net6.0/WebApplication1.genruntimeconfig.cache create mode 100644 WebApplication1/obj/Release/net6.0/staticwebassets.build.json create mode 100644 WebApplication1/obj/Release/net6.0/staticwebassets.publish.json create mode 100644 WebApplication1/obj/Release/net6.0/staticwebassets/msbuild.build.WebApplication1.props create mode 100644 WebApplication1/obj/Release/net6.0/staticwebassets/msbuild.buildMultiTargeting.WebApplication1.props create mode 100644 WebApplication1/obj/Release/net6.0/staticwebassets/msbuild.buildTransitive.WebApplication1.props diff --git a/WebApplication1/.config/dotnet-tools.json b/WebApplication1/.config/dotnet-tools.json new file mode 100644 index 0000000..b0e38ab --- /dev/null +++ b/WebApplication1/.config/dotnet-tools.json @@ -0,0 +1,5 @@ +{ + "version": 1, + "isRoot": true, + "tools": {} +} \ No newline at end of file diff --git a/WebApplication1/Dockerfile b/WebApplication1/Dockerfile index 3257c11..366f78f 100644 --- a/WebApplication1/Dockerfile +++ b/WebApplication1/Dockerfile @@ -17,9 +17,9 @@ RUN echo 'Asia/Shanghai' >/etc/timezone # 暴露的端口 #EXPOSE 80 -EXPOSE 5800 +EXPOSE 5194 -ENV ASPNETCORE_URLS=http://+:8099 +ENV ASPNETCORE_URLS=http://+:5194 ENV ASPNETCORE_ENVIRONMENT Production # 最后设置启动的dll diff --git a/WebApplication1/Program.cs b/WebApplication1/Program.cs index be24561..39be177 100644 --- a/WebApplication1/Program.cs +++ b/WebApplication1/Program.cs @@ -9,8 +9,11 @@ builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); builder.Services.AddHttpClient(); -var app = builder.Build(); +#if DEBUG +//builder.WebHost.UseUrls("http://143.122.26.141:5194", "http://127.0.0.1:5194"); +#endif +var app = builder.Build(); // Configure the HTTP request pipeline. if (app.Environment.IsDevelopment()) { @@ -19,6 +22,7 @@ if (app.Environment.IsDevelopment()) } + app.UseAuthorization(); app.MapControllers(); diff --git a/WebApplication1/Properties/PublishProfiles/FolderProfile.pubxml b/WebApplication1/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..cf5ac90 --- /dev/null +++ b/WebApplication1/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,21 @@ +锘 + + + + true + false + true + Release + Any CPU + FileSystem + bin\Release\net6.0\publish\ + FileSystem + <_TargetId>Folder + + net6.0 + bb831806-197b-4508-9ad5-5d3edb7fca27 + false + + \ No newline at end of file diff --git a/WebApplication1/Properties/PublishProfiles/FolderProfile.pubxml.user b/WebApplication1/Properties/PublishProfiles/FolderProfile.pubxml.user new file mode 100644 index 0000000..7eb595d --- /dev/null +++ b/WebApplication1/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -0,0 +1,11 @@ +锘 + + + + <_PublishTargetUrl>C:\Users\callm\source\repos\24Hour.Service\WebApplication1\bin\Release\net6.0\publish\ + True|2023-11-01T10:41:19.1109757Z;True|2023-11-01T18:39:07.4539146+08:00;True|2023-11-01T18:16:01.9167676+08:00;True|2023-11-01T18:15:52.7184209+08:00; + + + \ No newline at end of file diff --git a/WebApplication1/WebApplication1.csproj b/WebApplication1/WebApplication1.csproj index 0f2907b..68eaeec 100644 --- a/WebApplication1/WebApplication1.csproj +++ b/WebApplication1/WebApplication1.csproj @@ -6,6 +6,8 @@ enable ae1f7aa6-e320-4393-ac3f-984b92923499 Linux + 1.0.1.0 + 1.0.1.0 @@ -14,4 +16,9 @@ + + + Always + + diff --git a/WebApplication1/WebApplication1.csproj.user b/WebApplication1/WebApplication1.csproj.user index 96e7a74..555da40 100644 --- a/WebApplication1/WebApplication1.csproj.user +++ b/WebApplication1/WebApplication1.csproj.user @@ -4,6 +4,7 @@ ProjectDebugger - Docker + WebApplication1 + C:\Users\callm\source\repos\24Hour.Service\WebApplication1\Properties\PublishProfiles\FolderProfile.pubxml \ No newline at end of file diff --git a/WebApplication1/bin/Debug/net6.0/Dockerfile b/WebApplication1/bin/Debug/net6.0/Dockerfile new file mode 100644 index 0000000..366f78f --- /dev/null +++ b/WebApplication1/bin/Debug/net6.0/Dockerfile @@ -0,0 +1,26 @@ +# 选择从什么镜像基础上创建我们的镜像,相当于选择我们依赖的环境 +FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base + +LABEL description="" + +LABEL version="1.0" + +# 指定工作目录 +WORKDIR /app + +# 把当前目录复制到镜像的 app目录 +COPY . . + +#时区设置 +RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime +RUN echo 'Asia/Shanghai' >/etc/timezone + +# 暴露的端口 +#EXPOSE 80 +EXPOSE 5194 + +ENV ASPNETCORE_URLS=http://+:5194 +ENV ASPNETCORE_ENVIRONMENT Production + +# 最后设置启动的dll +ENTRYPOINT ["dotnet", "WebApplication1.dll"] \ No newline at end of file diff --git a/WebApplication1/bin/Debug/net6.0/WebApplication1.deps.json b/WebApplication1/bin/Debug/net6.0/WebApplication1.deps.json index c662172..a198b2e 100644 --- a/WebApplication1/bin/Debug/net6.0/WebApplication1.deps.json +++ b/WebApplication1/bin/Debug/net6.0/WebApplication1.deps.json @@ -6,7 +6,7 @@ "compilationOptions": {}, "targets": { ".NETCoreApp,Version=v6.0": { - "WebApplication1/1.0.0": { + "WebApplication1/1.0.1.0": { "dependencies": { "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.18.1", "Newtonsoft.Json": "13.0.3", @@ -75,7 +75,7 @@ } }, "libraries": { - "WebApplication1/1.0.0": { + "WebApplication1/1.0.1.0": { "type": "project", "serviceable": false, "sha512": "" diff --git a/WebApplication1/bin/Release/net6.0/Dockerfile b/WebApplication1/bin/Release/net6.0/Dockerfile new file mode 100644 index 0000000..366f78f --- /dev/null +++ b/WebApplication1/bin/Release/net6.0/Dockerfile @@ -0,0 +1,26 @@ +# 选择从什么镜像基础上创建我们的镜像,相当于选择我们依赖的环境 +FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base + +LABEL description="" + +LABEL version="1.0" + +# 指定工作目录 +WORKDIR /app + +# 把当前目录复制到镜像的 app目录 +COPY . . + +#时区设置 +RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime +RUN echo 'Asia/Shanghai' >/etc/timezone + +# 暴露的端口 +#EXPOSE 80 +EXPOSE 5194 + +ENV ASPNETCORE_URLS=http://+:5194 +ENV ASPNETCORE_ENVIRONMENT Production + +# 最后设置启动的dll +ENTRYPOINT ["dotnet", "WebApplication1.dll"] \ No newline at end of file diff --git a/WebApplication1/bin/Release/net6.0/WebApplication1.deps.json b/WebApplication1/bin/Release/net6.0/WebApplication1.deps.json new file mode 100644 index 0000000..a198b2e --- /dev/null +++ b/WebApplication1/bin/Release/net6.0/WebApplication1.deps.json @@ -0,0 +1,140 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "WebApplication1/1.0.1.0": { + "dependencies": { + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.18.1", + "Newtonsoft.Json": "13.0.3", + "Swashbuckle.AspNetCore": "6.0.0" + }, + "runtime": { + "WebApplication1.dll": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.18.1": {}, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Swashbuckle.AspNetCore/6.0.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.0.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.0.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.0.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.0.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.0.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.0.0": { + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + } + } + }, + "libraries": { + "WebApplication1/1.0.1.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.18.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RtNQEQQ/bgaxzrsZEkPB+/DFaUgNiq8GtZz/R4lt+mKXPcEvEuawlbl0PB1s7ND9kvkUVZtMphPxE9Ma1VGiFg==", + "path": "microsoft.visualstudio.azure.containers.tools.targets/1.18.1", + "hashPath": "microsoft.visualstudio.azure.containers.tools.targets.1.18.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VxukQYrUrxNUWQocOxmxua/4fZOPBdGCLSaoZYRNthZae0UXB+fzjTBTlj24fZEQrP+QTnsRwSygN9jNBqm/hg==", + "path": "swashbuckle.aspnetcore/6.0.0", + "hashPath": "swashbuckle.aspnetcore.6.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-onkGK5eDFmyNy605E5ZaT5oXEGsQJz2UEKsUOqYCZRBC2Fi6MbByUl+qznyl3pZ9/4nTvukUjt9+v28qvJPk/Q==", + "path": "swashbuckle.aspnetcore.swagger/6.0.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RXY21STD/yo4Uzy1L5GoRrEQQWoOosw0QBYo572VwcjePmpV1yFFHsTeThlMNBWKoTt6xadIdSjZj0FmDFYL2A==", + "path": "swashbuckle.aspnetcore.swaggergen/6.0.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VusRaCFt2As3SXBJmUOGA40IGr6ao+vsvDi7jbCS4AFx69kUUm8zxIHeJVqGov3w4lQowVxv8gmonRXDRh1FvQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.0.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/WebApplication1/bin/Release/net6.0/WebApplication1.runtimeconfig.json b/WebApplication1/bin/Release/net6.0/WebApplication1.runtimeconfig.json new file mode 100644 index 0000000..80d0347 --- /dev/null +++ b/WebApplication1/bin/Release/net6.0/WebApplication1.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/WebApplication1/bin/Release/net6.0/appsettings.Development.json b/WebApplication1/bin/Release/net6.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/WebApplication1/bin/Release/net6.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/WebApplication1/bin/Release/net6.0/appsettings.json b/WebApplication1/bin/Release/net6.0/appsettings.json new file mode 100644 index 0000000..aea7b3c --- /dev/null +++ b/WebApplication1/bin/Release/net6.0/appsettings.json @@ -0,0 +1,14 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + + "AllowedHosts": "*", + "Configs": { + "SystemIp": "143.120.5.25", + "Port": "8080" + } +} diff --git a/WebApplication1/bin/Release/net6.0/publish/Dockerfile b/WebApplication1/bin/Release/net6.0/publish/Dockerfile new file mode 100644 index 0000000..366f78f --- /dev/null +++ b/WebApplication1/bin/Release/net6.0/publish/Dockerfile @@ -0,0 +1,26 @@ +# 选择从什么镜像基础上创建我们的镜像,相当于选择我们依赖的环境 +FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base + +LABEL description="" + +LABEL version="1.0" + +# 指定工作目录 +WORKDIR /app + +# 把当前目录复制到镜像的 app目录 +COPY . . + +#时区设置 +RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime +RUN echo 'Asia/Shanghai' >/etc/timezone + +# 暴露的端口 +#EXPOSE 80 +EXPOSE 5194 + +ENV ASPNETCORE_URLS=http://+:5194 +ENV ASPNETCORE_ENVIRONMENT Production + +# 最后设置启动的dll +ENTRYPOINT ["dotnet", "WebApplication1.dll"] \ No newline at end of file diff --git a/WebApplication1/bin/Release/net6.0/publish/WebApplication1.deps.json b/WebApplication1/bin/Release/net6.0/publish/WebApplication1.deps.json new file mode 100644 index 0000000..a198b2e --- /dev/null +++ b/WebApplication1/bin/Release/net6.0/publish/WebApplication1.deps.json @@ -0,0 +1,140 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "WebApplication1/1.0.1.0": { + "dependencies": { + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.18.1", + "Newtonsoft.Json": "13.0.3", + "Swashbuckle.AspNetCore": "6.0.0" + }, + "runtime": { + "WebApplication1.dll": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.18.1": {}, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Swashbuckle.AspNetCore/6.0.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.0.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.0.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.0.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.0.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.0.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.0.0": { + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + } + } + }, + "libraries": { + "WebApplication1/1.0.1.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.18.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RtNQEQQ/bgaxzrsZEkPB+/DFaUgNiq8GtZz/R4lt+mKXPcEvEuawlbl0PB1s7ND9kvkUVZtMphPxE9Ma1VGiFg==", + "path": "microsoft.visualstudio.azure.containers.tools.targets/1.18.1", + "hashPath": "microsoft.visualstudio.azure.containers.tools.targets.1.18.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VxukQYrUrxNUWQocOxmxua/4fZOPBdGCLSaoZYRNthZae0UXB+fzjTBTlj24fZEQrP+QTnsRwSygN9jNBqm/hg==", + "path": "swashbuckle.aspnetcore/6.0.0", + "hashPath": "swashbuckle.aspnetcore.6.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-onkGK5eDFmyNy605E5ZaT5oXEGsQJz2UEKsUOqYCZRBC2Fi6MbByUl+qznyl3pZ9/4nTvukUjt9+v28qvJPk/Q==", + "path": "swashbuckle.aspnetcore.swagger/6.0.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RXY21STD/yo4Uzy1L5GoRrEQQWoOosw0QBYo572VwcjePmpV1yFFHsTeThlMNBWKoTt6xadIdSjZj0FmDFYL2A==", + "path": "swashbuckle.aspnetcore.swaggergen/6.0.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VusRaCFt2As3SXBJmUOGA40IGr6ao+vsvDi7jbCS4AFx69kUUm8zxIHeJVqGov3w4lQowVxv8gmonRXDRh1FvQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.0.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/WebApplication1/bin/Release/net6.0/publish/WebApplication1.runtimeconfig.json b/WebApplication1/bin/Release/net6.0/publish/WebApplication1.runtimeconfig.json new file mode 100644 index 0000000..80d0347 --- /dev/null +++ b/WebApplication1/bin/Release/net6.0/publish/WebApplication1.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/WebApplication1/bin/Release/net6.0/publish/appsettings.Development.json b/WebApplication1/bin/Release/net6.0/publish/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/WebApplication1/bin/Release/net6.0/publish/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/WebApplication1/bin/Release/net6.0/publish/appsettings.json b/WebApplication1/bin/Release/net6.0/publish/appsettings.json new file mode 100644 index 0000000..aea7b3c --- /dev/null +++ b/WebApplication1/bin/Release/net6.0/publish/appsettings.json @@ -0,0 +1,14 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + + "AllowedHosts": "*", + "Configs": { + "SystemIp": "143.120.5.25", + "Port": "8080" + } +} diff --git a/WebApplication1/bin/Release/net6.0/publish/web.config b/WebApplication1/bin/Release/net6.0/publish/web.config new file mode 100644 index 0000000..f93e84f --- /dev/null +++ b/WebApplication1/bin/Release/net6.0/publish/web.config @@ -0,0 +1,12 @@ +锘 + + + + + + + + + + + \ No newline at end of file diff --git a/WebApplication1/obj/Container/ContainerCreationResult.cache b/WebApplication1/obj/Container/ContainerCreationResult.cache new file mode 100644 index 0000000..e69de29 diff --git a/WebApplication1/obj/Container/ContainerDevelopmentMode.cache b/WebApplication1/obj/Container/ContainerDevelopmentMode.cache new file mode 100644 index 0000000..e69de29 diff --git a/WebApplication1/obj/Container/ContainerId.cache b/WebApplication1/obj/Container/ContainerId.cache new file mode 100644 index 0000000..e69de29 diff --git a/WebApplication1/obj/Container/ContainerName.cache b/WebApplication1/obj/Container/ContainerName.cache new file mode 100644 index 0000000..e69de29 diff --git a/WebApplication1/obj/Container/ContainerOperatingSystemFlavor.cache b/WebApplication1/obj/Container/ContainerOperatingSystemFlavor.cache new file mode 100644 index 0000000..c486999 --- /dev/null +++ b/WebApplication1/obj/Container/ContainerOperatingSystemFlavor.cache @@ -0,0 +1 @@ +Unknown \ No newline at end of file diff --git a/WebApplication1/obj/Container/ContainerRunContext.cache b/WebApplication1/obj/Container/ContainerRunContext.cache new file mode 100644 index 0000000..e69de29 diff --git a/WebApplication1/obj/Container/OperatingSystemName.cache b/WebApplication1/obj/Container/OperatingSystemName.cache new file mode 100644 index 0000000..3ab1070 --- /dev/null +++ b/WebApplication1/obj/Container/OperatingSystemName.cache @@ -0,0 +1 @@ +Linux \ No newline at end of file diff --git a/WebApplication1/obj/Container/TargetFramework.cache b/WebApplication1/obj/Container/TargetFramework.cache new file mode 100644 index 0000000..8d2863a --- /dev/null +++ b/WebApplication1/obj/Container/TargetFramework.cache @@ -0,0 +1 @@ +DotNetCore \ No newline at end of file diff --git a/WebApplication1/obj/Release/net6.0/PubTmp/Out/Dockerfile b/WebApplication1/obj/Release/net6.0/PubTmp/Out/Dockerfile new file mode 100644 index 0000000..366f78f --- /dev/null +++ b/WebApplication1/obj/Release/net6.0/PubTmp/Out/Dockerfile @@ -0,0 +1,26 @@ +# 选择从什么镜像基础上创建我们的镜像,相当于选择我们依赖的环境 +FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base + +LABEL description="" + +LABEL version="1.0" + +# 指定工作目录 +WORKDIR /app + +# 把当前目录复制到镜像的 app目录 +COPY . . + +#时区设置 +RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime +RUN echo 'Asia/Shanghai' >/etc/timezone + +# 暴露的端口 +#EXPOSE 80 +EXPOSE 5194 + +ENV ASPNETCORE_URLS=http://+:5194 +ENV ASPNETCORE_ENVIRONMENT Production + +# 最后设置启动的dll +ENTRYPOINT ["dotnet", "WebApplication1.dll"] \ No newline at end of file diff --git a/WebApplication1/obj/Release/net6.0/PubTmp/Out/WebApplication1.deps.json b/WebApplication1/obj/Release/net6.0/PubTmp/Out/WebApplication1.deps.json new file mode 100644 index 0000000..a198b2e --- /dev/null +++ b/WebApplication1/obj/Release/net6.0/PubTmp/Out/WebApplication1.deps.json @@ -0,0 +1,140 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "WebApplication1/1.0.1.0": { + "dependencies": { + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.18.1", + "Newtonsoft.Json": "13.0.3", + "Swashbuckle.AspNetCore": "6.0.0" + }, + "runtime": { + "WebApplication1.dll": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.18.1": {}, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Swashbuckle.AspNetCore/6.0.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "3.0.0", + "Swashbuckle.AspNetCore.Swagger": "6.0.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.0.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.0.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.0.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.0.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.0.0": { + "runtime": { + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.0.0" + } + } + } + } + }, + "libraries": { + "WebApplication1/1.0.1.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ApiDescription.Server/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", + "path": "microsoft.extensions.apidescription.server/3.0.0", + "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.18.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RtNQEQQ/bgaxzrsZEkPB+/DFaUgNiq8GtZz/R4lt+mKXPcEvEuawlbl0PB1s7ND9kvkUVZtMphPxE9Ma1VGiFg==", + "path": "microsoft.visualstudio.azure.containers.tools.targets/1.18.1", + "hashPath": "microsoft.visualstudio.azure.containers.tools.targets.1.18.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VxukQYrUrxNUWQocOxmxua/4fZOPBdGCLSaoZYRNthZae0UXB+fzjTBTlj24fZEQrP+QTnsRwSygN9jNBqm/hg==", + "path": "swashbuckle.aspnetcore/6.0.0", + "hashPath": "swashbuckle.aspnetcore.6.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-onkGK5eDFmyNy605E5ZaT5oXEGsQJz2UEKsUOqYCZRBC2Fi6MbByUl+qznyl3pZ9/4nTvukUjt9+v28qvJPk/Q==", + "path": "swashbuckle.aspnetcore.swagger/6.0.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RXY21STD/yo4Uzy1L5GoRrEQQWoOosw0QBYo572VwcjePmpV1yFFHsTeThlMNBWKoTt6xadIdSjZj0FmDFYL2A==", + "path": "swashbuckle.aspnetcore.swaggergen/6.0.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VusRaCFt2As3SXBJmUOGA40IGr6ao+vsvDi7jbCS4AFx69kUUm8zxIHeJVqGov3w4lQowVxv8gmonRXDRh1FvQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.0.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/WebApplication1/obj/Release/net6.0/PubTmp/Out/WebApplication1.runtimeconfig.json b/WebApplication1/obj/Release/net6.0/PubTmp/Out/WebApplication1.runtimeconfig.json new file mode 100644 index 0000000..80d0347 --- /dev/null +++ b/WebApplication1/obj/Release/net6.0/PubTmp/Out/WebApplication1.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "6.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/WebApplication1/obj/Release/net6.0/PubTmp/Out/appsettings.Development.json b/WebApplication1/obj/Release/net6.0/PubTmp/Out/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/WebApplication1/obj/Release/net6.0/PubTmp/Out/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/WebApplication1/obj/Release/net6.0/PubTmp/Out/appsettings.json b/WebApplication1/obj/Release/net6.0/PubTmp/Out/appsettings.json new file mode 100644 index 0000000..aea7b3c --- /dev/null +++ b/WebApplication1/obj/Release/net6.0/PubTmp/Out/appsettings.json @@ -0,0 +1,14 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + + "AllowedHosts": "*", + "Configs": { + "SystemIp": "143.120.5.25", + "Port": "8080" + } +} diff --git a/WebApplication1/obj/Release/net6.0/PubTmp/Out/web.config b/WebApplication1/obj/Release/net6.0/PubTmp/Out/web.config new file mode 100644 index 0000000..f93e84f --- /dev/null +++ b/WebApplication1/obj/Release/net6.0/PubTmp/Out/web.config @@ -0,0 +1,12 @@ +锘 + + + + + + + + + + + \ No newline at end of file diff --git a/WebApplication1/obj/Release/net6.0/WebApplication1.MvcApplicationPartsAssemblyInfo.cache b/WebApplication1/obj/Release/net6.0/WebApplication1.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/WebApplication1/obj/Release/net6.0/WebApplication1.MvcApplicationPartsAssemblyInfo.cs b/WebApplication1/obj/Release/net6.0/WebApplication1.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..a8a0fb0 --- /dev/null +++ b/WebApplication1/obj/Release/net6.0/WebApplication1.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 +// 杩愯鏃剁増鏈:4.0.30319.42000 +// +// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳戒細瀵艰嚧涓嶆纭殑琛屼负锛屽苟涓斿鏋 +// 閲嶆柊鐢熸垚浠g爜锛岃繖浜涙洿鏀瑰皢浼氫涪澶便 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// 鐢 MSBuild WriteCodeFragment 绫荤敓鎴愩 + diff --git a/WebApplication1/obj/Release/net6.0/WebApplication1.csproj.CopyComplete b/WebApplication1/obj/Release/net6.0/WebApplication1.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/WebApplication1/obj/Release/net6.0/WebApplication1.csproj.CoreCompileInputs.cache b/WebApplication1/obj/Release/net6.0/WebApplication1.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..190d39c --- /dev/null +++ b/WebApplication1/obj/Release/net6.0/WebApplication1.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +1aab1d47053209a50c128993feed61e455baf1b5 diff --git a/WebApplication1/obj/Release/net6.0/WebApplication1.genruntimeconfig.cache b/WebApplication1/obj/Release/net6.0/WebApplication1.genruntimeconfig.cache new file mode 100644 index 0000000..15ca1c2 --- /dev/null +++ b/WebApplication1/obj/Release/net6.0/WebApplication1.genruntimeconfig.cache @@ -0,0 +1 @@ +047f5fe97a60ada4b377c341b4057c1add75bb62 diff --git a/WebApplication1/obj/Release/net6.0/staticwebassets.build.json b/WebApplication1/obj/Release/net6.0/staticwebassets.build.json new file mode 100644 index 0000000..e7028e1 --- /dev/null +++ b/WebApplication1/obj/Release/net6.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "ozPU8KMwOlbQHpcE5qZTZ7CirEa+BWCC4ogaz+QJEsE=", + "Source": "WebApplication1", + "BasePath": "_content/WebApplication1", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/WebApplication1/obj/Release/net6.0/staticwebassets.publish.json b/WebApplication1/obj/Release/net6.0/staticwebassets.publish.json new file mode 100644 index 0000000..a9229ef --- /dev/null +++ b/WebApplication1/obj/Release/net6.0/staticwebassets.publish.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "EB1soTy2l+MyQgOt5BLTkE/eVrf3EMSDyjw4yCBW4Fw=", + "Source": "WebApplication1", + "BasePath": "_content/WebApplication1", + "Mode": "Default", + "ManifestType": "Publish", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/WebApplication1/obj/Release/net6.0/staticwebassets/msbuild.build.WebApplication1.props b/WebApplication1/obj/Release/net6.0/staticwebassets/msbuild.build.WebApplication1.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/WebApplication1/obj/Release/net6.0/staticwebassets/msbuild.build.WebApplication1.props @@ -0,0 +1,3 @@ +锘 + + \ No newline at end of file diff --git a/WebApplication1/obj/Release/net6.0/staticwebassets/msbuild.buildMultiTargeting.WebApplication1.props b/WebApplication1/obj/Release/net6.0/staticwebassets/msbuild.buildMultiTargeting.WebApplication1.props new file mode 100644 index 0000000..be38ccf --- /dev/null +++ b/WebApplication1/obj/Release/net6.0/staticwebassets/msbuild.buildMultiTargeting.WebApplication1.props @@ -0,0 +1,3 @@ +锘 + + \ No newline at end of file diff --git a/WebApplication1/obj/Release/net6.0/staticwebassets/msbuild.buildTransitive.WebApplication1.props b/WebApplication1/obj/Release/net6.0/staticwebassets/msbuild.buildTransitive.WebApplication1.props new file mode 100644 index 0000000..46e54cd --- /dev/null +++ b/WebApplication1/obj/Release/net6.0/staticwebassets/msbuild.buildTransitive.WebApplication1.props @@ -0,0 +1,3 @@ +锘 + + \ No newline at end of file diff --git a/WebApplication1/obj/project.assets.json b/WebApplication1/obj/project.assets.json index d56ba2a..b26770e 100644 --- a/WebApplication1/obj/project.assets.json +++ b/WebApplication1/obj/project.assets.json @@ -348,7 +348,7 @@ "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {} }, "project": { - "version": "1.0.0", + "version": "1.0.1", "restore": { "projectUniqueName": "C:\\Users\\callm\\source\\repos\\24Hour.Service\\WebApplication1\\WebApplication1.csproj", "projectName": "WebApplication1",