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.
66 lines
3.2 KiB
66 lines
3.2 KiB
2 years ago
|
|
||
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
||
|
<Import Project="..\..\common.props" />
|
||
|
|
||
|
<PropertyGroup>
|
||
|
|
||
|
<RootNamespace>Win.Sfs.SettleAccount</RootNamespace>
|
||
|
<PreserveCompilationReferences>true</PreserveCompilationReferences>
|
||
|
<UserSecretsId>SettleAccount-c2d31439-b723-48e2-b061-5ebd7aeb6010</UserSecretsId>
|
||
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
||
|
<DockerfileContext>..\..\..\..</DockerfileContext>
|
||
|
<TargetFramework>net5.0</TargetFramework>
|
||
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Hangfire.AspNetCore" Version="1.7.24" />
|
||
|
<PackageReference Include="Hangfire.SqlServer" Version="1.7.24" />
|
||
|
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="3.0.1" />
|
||
|
<PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis" Version="5.0.7" />
|
||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.7">
|
||
|
<PrivateAssets>all</PrivateAssets>
|
||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
</PackageReference>
|
||
|
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="5.0.1" />
|
||
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.14" />
|
||
|
<PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
|
||
|
<PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" />
|
||
|
<!-- <PackageReference Include="Serilog.Sinks.Elasticsearch" Version="8.2.0" /> -->
|
||
|
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
||
|
<PackageReference Include="Serilog.Sinks.MSSqlServer" Version="5.6.0" />
|
||
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.4" />
|
||
|
<PackageReference Include="Volo.Abp.AspNetCore.MultiTenancy" Version="4.3.3" />
|
||
|
<PackageReference Include="Volo.Abp.AspNetCore.Serilog" Version="4.3.3" />
|
||
|
<PackageReference Include="Volo.Abp.Autofac" Version="4.3.3" />
|
||
|
<PackageReference Include="Volo.Abp.BackgroundJobs.HangFire" Version="4.3.3" />
|
||
|
<PackageReference Include="Volo.Abp.BlobStoring" Version="4.3.3" />
|
||
|
<PackageReference Include="Volo.Abp.BlobStoring.FileSystem" Version="4.3.3" />
|
||
|
<PackageReference Include="Volo.Abp.Caching" Version="4.3.3" />
|
||
|
<PackageReference Include="Volo.Abp.HangFire" Version="4.3.3" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\..\src\SettleAccount.HttpApi\SettleAccount.HttpApi.csproj" />
|
||
|
<ProjectReference Include="..\..\src\SettleAccount.Application\SettleAccount.Application.csproj" />
|
||
|
<ProjectReference Include="..\..\src\SettleAccount.EntityFrameworkCore\SettleAccount.EntityFrameworkCore.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Compile Remove="Logs\**" />
|
||
|
<Content Remove="Logs\**" />
|
||
|
<EmbeddedResource Remove="Logs\**" />
|
||
|
<None Remove="Logs\**" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Folder Include="EntityFrameworkCore\" />
|
||
|
<Folder Include="Migrations\" />
|
||
|
<Folder Include="wwwroot\files\host\my-file-container\" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
|
||
|
|
||
|
</Project>
|