You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
4.0 KiB
70 lines
4.0 KiB
2 years ago
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
||
|
<Import Project="..\..\common.props" />
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net5.0</TargetFramework>
|
||
|
<RootNamespace>WmsWebApi</RootNamespace>
|
||
|
<PreserveCompilationReferences>true</PreserveCompilationReferences>
|
||
|
<UserSecretsId>WmsWebApi-c2d31439-b723-48e2-b061-5ebd7aeb6010</UserSecretsId>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
|
||
|
<PackageReference Include="Serilog.Sinks.Async" Version="1.4.0" />
|
||
|
<PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" Version="5.0.*" />
|
||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.*">
|
||
|
<PrivateAssets>all</PrivateAssets>
|
||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||
|
</PackageReference>
|
||
|
<PackageReference Include="Volo.Abp.AspNetCore.Authentication.JwtBearer" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.AspNetCore.Mvc" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.Autofac" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.Caching.StackExchangeRedis" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.EntityFrameworkCore.SqlServer" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.AspNetCore.Serilog" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.Swashbuckle" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.Account.Web.IdentityServer" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.Account.Application" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.SettingManagement.EntityFrameworkCore" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.SettingManagement.Application" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.SettingManagement.HttpApi" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.AuditLogging.EntityFrameworkCore" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.IdentityServer.EntityFrameworkCore" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.PermissionManagement.EntityFrameworkCore" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.PermissionManagement.Application" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.PermissionManagement.HttpApi" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.Identity.EntityFrameworkCore" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.Identity.Application" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.Identity.HttpApi" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.PermissionManagement.Domain.Identity" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.FeatureManagement.EntityFrameworkCore" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.FeatureManagement.Application" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.FeatureManagement.HttpApi" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.TenantManagement.EntityFrameworkCore" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.TenantManagement.Application" Version="4.4.4" />
|
||
|
<PackageReference Include="Volo.Abp.TenantManagement.HttpApi" Version="4.4.4" />
|
||
|
<ProjectReference Include="..\..\src\WmsWebApi.Application.Contracts\WmsWebApi.Application.Contracts.csproj" />
|
||
|
<ProjectReference Include="..\WmsWebApi.Host.Shared\WmsWebApi.Host.Shared.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Compile Remove="Logs\**" />
|
||
|
<Content Remove="Logs\**" />
|
||
|
<EmbeddedResource Remove="Logs\**" />
|
||
|
<None Remove="Logs\**" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<None Update="Pages\**\*.js">
|
||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
|
</None>
|
||
|
<None Update="Pages\**\*.css">
|
||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
|
</None>
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|