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.
51 lines
2.5 KiB
51 lines
2.5 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<RootNamespace>Lion.AbpPro.FileManagement</RootNamespace>
|
|
<PreserveCompilationReferences>true</PreserveCompilationReferences>
|
|
<UserSecretsId>Lion.AbpPro.FileManagement-c2d31439-b723-48e2-b061-5ebd7aeb6010</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Serilog" />
|
|
<PackageReference Include="Serilog.AspNetCore" />
|
|
<PackageReference Include="Serilog.Exceptions" />
|
|
<PackageReference Include="Serilog.Extensions.Logging" />
|
|
<PackageReference Include="Serilog.Settings.Configuration" />
|
|
<PackageReference Include="Serilog.Sinks.Console" />
|
|
<PackageReference Include="Serilog.Sinks.Elasticsearch" />
|
|
<PackageReference Include="Serilog.Sinks.File" />
|
|
<!-- <PackageReference Include="IdentityModel" />-->
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
|
|
<PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" />
|
|
<PackageReference Include="Volo.Abp.EntityFrameworkCore.MySQL" />
|
|
<PackageReference Include="Volo.Abp.Autofac" />
|
|
<PackageReference Include="Volo.Abp.Caching.StackExchangeRedis" />
|
|
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy" />
|
|
<PackageReference Include="Volo.Abp.AspNetCore.Serilog" />
|
|
<PackageReference Include="Volo.Abp.Swashbuckle" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Lion.AbpPro.FileManagement.HttpApi\Lion.AbpPro.FileManagement.HttpApi.csproj" />
|
|
<ProjectReference Include="..\..\src\Lion.AbpPro.FileManagement.Application\Lion.AbpPro.FileManagement.Application.csproj" />
|
|
<ProjectReference Include="..\..\src\Lion.AbpPro.FileManagement.EntityFrameworkCore\Lion.AbpPro.FileManagement.EntityFrameworkCore.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Logs\**" />
|
|
<Content Remove="Logs\**" />
|
|
<EmbeddedResource Remove="Logs\**" />
|
|
<None Remove="Logs\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="$(UserProfile)\.nuget\packages\*\*\contentFiles\any\*\*.abppkg*.json" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|