You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.9 KiB
XML
44 lines
1.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
<DocumentationFile>..\Api.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<DocumentationFile>..\DS.WMS.WebApi\Api.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Autofac" Version="6.4.0" />
|
|
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="8.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.11" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
|
|
<PackageReference Include="NLog.Web.AspNetCore" Version="5.0.0" />
|
|
<PackageReference Include="Senparc.Weixin.MP" Version="16.18.9" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DS.Module.AutofacModule\DS.Module.AutofacModule.csproj" />
|
|
<ProjectReference Include="..\DS.Module.AutoMapper\DS.Module.AutoMapper.csproj" />
|
|
<ProjectReference Include="..\DS.Module.Core\DS.Module.Core.csproj" />
|
|
<ProjectReference Include="..\DS.Module.Jwt\DS.Module.Jwt.csproj" />
|
|
<ProjectReference Include="..\DS.Module.SqlSugar\DS.Module.SqlSugar.csproj" />
|
|
<ProjectReference Include="..\DS.Module.Swagger\DS.Module.Swagger.csproj" />
|
|
<ProjectReference Include="..\DS.WMS.Core\DS.WMS.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\PDFUpload" />
|
|
<Folder Include="wwwroot\PrintFiles" />
|
|
</ItemGroup>
|
|
|
|
<ProjectExtensions><VisualStudio><UserProperties /></VisualStudio></ProjectExtensions>
|
|
|
|
</Project>
|