dockerfile

This commit is contained in:
tanglong 2025-07-29 13:26:45 +08:00
parent 752e8450bc
commit 87fc77cde9
33 changed files with 157 additions and 12 deletions

10
.gitignore vendored
View File

@ -1 +1,9 @@
.vs/ .vs
.vscode
bin
obj
*.jfm
*.dbmdl
*.user
node_modules
.dll

View File

@ -14,7 +14,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("YD_XinWei.Commons")] [assembly: System.Reflection.AssemblyCompanyAttribute("YD_XinWei.Commons")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+299b8a07a2e3daa25ed7bfc298742b741e9aa560")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+752e8450bc927a77c48d41a6a283e9bc09702552")]
[assembly: System.Reflection.AssemblyProductAttribute("YD_XinWei.Commons")] [assembly: System.Reflection.AssemblyProductAttribute("YD_XinWei.Commons")]
[assembly: System.Reflection.AssemblyTitleAttribute("YD_XinWei.Commons")] [assembly: System.Reflection.AssemblyTitleAttribute("YD_XinWei.Commons")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
50b8a4626508040abd733f3031a813dc6609bce5408b8dc57038feb8d69ec757 88543b9d86fdd1d73a4ab5dd492e00b34a1ffaae4402297e26f90de2ee9c4014

View File

@ -1 +1 @@
b3c3fa0cd840e10ff6c730540bf0c53b698e7d2d36514073d041776276a0a43e 37202eee9409386a5d03c6326c30ea5c84ae83e55439c7dd87f6b2f6c13b7814

View File

@ -37,3 +37,15 @@ C:\Users\Administrator\Desktop\XW\Server\YD_XinWei.Commons\obj\Debug\net6.0\YD_X
C:\Users\Administrator\Desktop\XW\Server\YD_XinWei.Commons\obj\Debug\net6.0\refint\YD_XinWei.Commons.dll C:\Users\Administrator\Desktop\XW\Server\YD_XinWei.Commons\obj\Debug\net6.0\refint\YD_XinWei.Commons.dll
C:\Users\Administrator\Desktop\XW\Server\YD_XinWei.Commons\obj\Debug\net6.0\YD_XinWei.Commons.pdb C:\Users\Administrator\Desktop\XW\Server\YD_XinWei.Commons\obj\Debug\net6.0\YD_XinWei.Commons.pdb
C:\Users\Administrator\Desktop\XW\Server\YD_XinWei.Commons\obj\Debug\net6.0\ref\YD_XinWei.Commons.dll C:\Users\Administrator\Desktop\XW\Server\YD_XinWei.Commons\obj\Debug\net6.0\ref\YD_XinWei.Commons.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei.Commons\bin\Debug\net6.0\YD_XinWei.Commons.deps.json
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei.Commons\bin\Debug\net6.0\YD_XinWei.Commons.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei.Commons\bin\Debug\net6.0\YD_XinWei.Commons.pdb
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei.Commons\obj\Debug\net6.0\YD_XinWei.Commons.csproj.AssemblyReference.cache
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei.Commons\obj\Debug\net6.0\YD_XinWei.Commons.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei.Commons\obj\Debug\net6.0\YD_XinWei.Commons.AssemblyInfoInputs.cache
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei.Commons\obj\Debug\net6.0\YD_XinWei.Commons.AssemblyInfo.cs
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei.Commons\obj\Debug\net6.0\YD_XinWei.Commons.csproj.CoreCompileInputs.cache
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei.Commons\obj\Debug\net6.0\YD_XinWei.Commons.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei.Commons\obj\Debug\net6.0\refint\YD_XinWei.Commons.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei.Commons\obj\Debug\net6.0\YD_XinWei.Commons.pdb
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei.Commons\obj\Debug\net6.0\ref\YD_XinWei.Commons.dll

View File

@ -1 +0,0 @@
{"documents":{"C:\\Users\\Administrator\\Desktop\\XW\\*":"https://dev.azure.com/tanglong10081/YD_XinWei/_apis/git/repositories/YD_XinWei/items?api-version=1.0&versionType=commit&version=c1ecf2ee460c2d5bfba31feaf2ed3fd5c32d154f&path=/*"}}

36
YD_XinWei/Dockerfile Normal file
View File

@ -0,0 +1,36 @@
FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS base
# 安装 libgdiplus解决 Gdip 错误)
#RUN apt-get update && \
#apt-get install -y libgdiplus libc6-dev && \
#ln -s libgdiplus.so /usr/lib/libgdiplus.so && \
#apt-get clean && \
#rm -rf /var/lib/apt/lists/*
WORKDIR /app
EXPOSE 80
# 此阶段用于生成服务项目
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
ARG BUILD_CONFIGURATION=Release
WORKDIR /src
COPY ["YD_XinWei.Api/YD_XinWei.Api.csproj", "YD_XinWei.Api/"]
COPY ["YD_XinWei.Commons/YD_XinWei.Commons.csproj", "YD_XinWei.Commons/"]
RUN dotnet restore "./YD_AllHeartRates.Api/YD_AllHeartRates.Api.csproj"
COPY . .
WORKDIR "/src/YD_XinWei.Api"
RUN dotnet build "./YD_XinWei.Api.csproj" -c $BUILD_CONFIGURATION -o /app/build
# 此阶段用于发布要复制到最终阶段的服务项目
FROM build AS publish
ARG BUILD_CONFIGURATION=Release
RUN dotnet publish "./YD_XinWei.Api.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false
# 此阶段在生产中使用,或在常规模式下从 VS 运行时使用(在不使用调试配置时为默认值)
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "YD_XinWei.Api.dll"]

View File

@ -19,7 +19,7 @@ namespace YD_XinWei.Api
{ {
serverOptions.Limits.MaxRequestBodySize = 10485760; serverOptions.Limits.MaxRequestBodySize = 10485760;
}); });
webBuilder.UseKestrel().UseUrls("http://*:9994"); webBuilder.UseKestrel().UseUrls("http://*:9995");
webBuilder.UseIIS(); webBuilder.UseIIS();
webBuilder.UseStartup<Startup>(); webBuilder.UseStartup<Startup>();
}).UseServiceProviderFactory(new AutofacServiceProviderFactory()); }).UseServiceProviderFactory(new AutofacServiceProviderFactory());

View File

@ -8,6 +8,8 @@
<GenerateDocumentationFile>True</GenerateDocumentationFile> <GenerateDocumentationFile>True</GenerateDocumentationFile>
<DocumentationFile>obj\Debug\net6.0\YD_XinWei.Api.xml</DocumentationFile> <DocumentationFile>obj\Debug\net6.0\YD_XinWei.Api.xml</DocumentationFile>
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath> <BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@ -682,7 +682,7 @@
}, },
"runtime": { "runtime": {
"YD_XinWei.Commons.dll": { "YD_XinWei.Commons.dll": {
"assemblyVersion": "1.0.0", "assemblyVersion": "1.0.0.0",
"fileVersion": "1.0.0.0" "fileVersion": "1.0.0.0"
} }
} }

View File

@ -14,7 +14,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("YD_XinWei.Api")] [assembly: System.Reflection.AssemblyCompanyAttribute("YD_XinWei.Api")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+299b8a07a2e3daa25ed7bfc298742b741e9aa560")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+752e8450bc927a77c48d41a6a283e9bc09702552")]
[assembly: System.Reflection.AssemblyProductAttribute("YD_XinWei.Api")] [assembly: System.Reflection.AssemblyProductAttribute("YD_XinWei.Api")]
[assembly: System.Reflection.AssemblyTitleAttribute("YD_XinWei.Api")] [assembly: System.Reflection.AssemblyTitleAttribute("YD_XinWei.Api")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
6311e867a9619c469ee6583efe886a4e2a91e698ddcee4610aa0fa97063f93e1 dee77e356e0bf6ea56b2806ff11782c74234817ea9aa8eff505bade5fa44cc77

View File

@ -1 +1 @@
6acc63e4400e66740c8f030c2ef8a887272d52d6355dc8e21ba51d502324c026 122bf4be167545f44a8b98bc77d1c63213a00809cdc85093619d034dd57ebcf4

View File

@ -355,3 +355,92 @@ C:\Users\Administrator\Desktop\XW\Server\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Ap
C:\Users\Administrator\Desktop\XW\Server\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.pdb C:\Users\Administrator\Desktop\XW\Server\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.pdb
C:\Users\Administrator\Desktop\XW\Server\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.genruntimeconfig.cache C:\Users\Administrator\Desktop\XW\Server\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.genruntimeconfig.cache
C:\Users\Administrator\Desktop\XW\Server\YD_XinWei\obj\Debug\net6.0\ref\YD_XinWei.Api.dll C:\Users\Administrator\Desktop\XW\Server\YD_XinWei\obj\Debug\net6.0\ref\YD_XinWei.Api.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\appsettings.Development.json
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\appsettings.json
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\YD_XinWei.Api.staticwebassets.endpoints.json
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\YD_XinWei.Api.exe
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\YD_XinWei.Api.deps.json
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\YD_XinWei.Api.runtimeconfig.json
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\YD_XinWei.Api.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\YD_XinWei.Api.pdb
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\YD_XinWei.Api.xml
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Aliyun.OSS.Core.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Autofac.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Autofac.Extensions.DependencyInjection.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\AutoMapper.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\AutoMapper.Collection.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Humanizer.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.AspNetCore.JsonPatch.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.AspNetCore.Mvc.Versioning.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.Bcl.TimeProvider.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.Data.SqlClient.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Abstractions.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Design.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Relational.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.SqlServer.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.Identity.Client.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.IdentityModel.Abstractions.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.OpenApi.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Newtonsoft.Json.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Newtonsoft.Json.Bson.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\System.Diagnostics.DiagnosticSource.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\System.Drawing.Common.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\System.Runtime.Caching.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\System.Security.Permissions.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\System.Windows.Extensions.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\YD_XinWei.Commons.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\bin\Debug\net6.0\YD_XinWei.Commons.pdb
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.csproj.AssemblyReference.cache
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.AssemblyInfoInputs.cache
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.AssemblyInfo.cs
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.csproj.CoreCompileInputs.cache
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.MvcApplicationPartsAssemblyInfo.cs
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.MvcApplicationPartsAssemblyInfo.cache
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\scopedcss\bundle\YD_XinWei.Api.styles.css
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\staticwebassets.build.json
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\staticwebassets.development.json
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\staticwebassets.build.endpoints.json
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\staticwebassets\msbuild.YD_XinWei.Api.Microsoft.AspNetCore.StaticWebAssets.props
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\staticwebassets\msbuild.YD_XinWei.Api.Microsoft.AspNetCore.StaticWebAssetEndpoints.props
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\staticwebassets\msbuild.build.YD_XinWei.Api.props
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\staticwebassets\msbuild.buildMultiTargeting.YD_XinWei.Api.props
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\staticwebassets\msbuild.buildTransitive.YD_XinWei.Api.props
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\staticwebassets.pack.json
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\staticwebassets.upToDateCheck.txt
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\YD_XinWe.7845F25F.Up2Date
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\refint\YD_XinWei.Api.dll
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.xml
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.pdb
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\YD_XinWei.Api.genruntimeconfig.cache
C:\Users\tangl\Desktop\Git\YD_XinWei\YD_XinWei\obj\Debug\net6.0\ref\YD_XinWei.Api.dll

View File

@ -1 +1 @@
c1b33d88448f76915fc5fab3c9187acbf324c97b4931ae9b088069e1b37e7555 7b5af5f617f5a81707f8229723421712fcc945fcf46e84c8e7f12fea3d33dfa2

View File

@ -1 +0,0 @@
{"documents":{"C:\\Users\\Administrator\\Desktop\\XW\\*":"https://dev.azure.com/tanglong10081/YD_XinWei/_apis/git/repositories/YD_XinWei/items?api-version=1.0&versionType=commit&version=c1ecf2ee460c2d5bfba31feaf2ed3fd5c32d154f&path=/*"}}