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.
53 lines
3.0 KiB
53 lines
3.0 KiB
1 year ago
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net7.0</TargetFramework>
|
||
|
<AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81;</AssetTargetFallback>
|
||
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||
|
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
|
||
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
||
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
||
|
<MvcRazorExcludeRefAssembliesFromPublish>false</MvcRazorExcludeRefAssembliesFromPublish>
|
||
|
<PreserveCompilationReferences>true</PreserveCompilationReferences>
|
||
|
<NoWin32Manifest>true</NoWin32Manifest>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Serilog.AspNetCore" Version="6.1.0" />
|
||
|
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
||
|
<PackageReference Include="Serilog.Sinks.Elasticsearch" Version="8.4.1" />
|
||
|
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="7.0.2" />
|
||
|
<PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" Version="7.0.2" />
|
||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.2">
|
||
|
<PrivateAssets>all</PrivateAssets>
|
||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
</PackageReference>
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Volo.Abp.Autofac" Version="7.0.1" />
|
||
|
<PackageReference Include="Volo.Abp.EntityFrameworkCore.SqlServer" Version="7.0.1" />
|
||
|
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic" Version="7.0.1" />
|
||
|
<PackageReference Include="Volo.Abp.EventBus.RabbitMQ" Version="7.0.1" />
|
||
|
<PackageReference Include="Volo.Abp.Identity.Application.Contracts" Version="7.0.1" />
|
||
|
<PackageReference Include="Volo.Abp.Identity.EntityFrameworkCore" Version="7.0.1" />
|
||
|
<PackageReference Include="Volo.Abp.IdentityServer.EntityFrameworkCore" Version="7.0.1" />
|
||
|
<PackageReference Include="Volo.Abp.Account.Web.IdentityServer" Version="7.0.1" />
|
||
|
<PackageReference Include="Volo.Abp.Account.Application" Version="7.0.1" />
|
||
|
<PackageReference Include="Volo.Abp.AuditLogging.EntityFrameworkCore" Version="7.0.1" />
|
||
|
<PackageReference Include="Volo.Abp.PermissionManagement.EntityFrameworkCore" Version="7.0.1" />
|
||
|
<PackageReference Include="Volo.Abp.FeatureManagement.EntityFrameworkCore" Version="7.0.1" />
|
||
|
<PackageReference Include="Volo.Abp.SettingManagement.EntityFrameworkCore" Version="7.0.1" />
|
||
|
<PackageReference Include="Volo.Abp.TenantManagement.Application.Contracts" Version="7.0.1" />
|
||
|
<PackageReference Include="Volo.Abp.TenantManagement.EntityFrameworkCore" Version="7.0.1" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Compile Remove="Logs\**" />
|
||
|
<Content Remove="Logs\**" />
|
||
|
<EmbeddedResource Remove="Logs\**" />
|
||
|
<None Remove="Logs\**" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|