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.
49 lines
2.5 KiB
49 lines
2.5 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<RootNamespace>MyCompanyName.MyProjectName.MyModuleName</RootNamespace>
|
|
<PreserveCompilationReferences>true</PreserveCompilationReferences>
|
|
<UserSecretsId>MyCompanyName.MyProjectName.MyModuleName-c2d31439-b723-48e2-b061-5ebd7aeb6010</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Serilog.AspNetCore"/>
|
|
<PackageReference Include="Serilog.Sinks.Async"/>
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer"/>
|
|
<PackageReference Include="Microsoft.AspNetCore.DataProtection.StackExchangeRedis"/>
|
|
<PackageReference Include="Volo.Abp.Autofac"/>
|
|
<PackageReference Include="Volo.Abp.Caching.StackExchangeRedis"/>
|
|
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy"/>
|
|
<PackageReference Include="Volo.Abp.EntityFrameworkCore.MySQL"/>
|
|
<PackageReference Include="Volo.Abp.AspNetCore.Serilog"/>
|
|
<PackageReference Include="Volo.Abp.Swashbuckle"/>
|
|
<PackageReference Include="Volo.Abp.PermissionManagement.EntityFrameworkCore"/>
|
|
<PackageReference Include="Volo.Abp.SettingManagement.EntityFrameworkCore"/>
|
|
<PackageReference Include="Volo.Abp.AuditLogging.EntityFrameworkCore"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\MyCompanyName.MyProjectName.MyModuleName.HttpApi\MyCompanyName.MyProjectName.MyModuleName.HttpApi.csproj"/>
|
|
<ProjectReference Include="..\..\src\MyCompanyName.MyProjectName.MyModuleName.Application\MyCompanyName.MyProjectName.MyModuleName.Application.csproj"/>
|
|
<ProjectReference Include="..\..\src\MyCompanyName.MyProjectName.MyModuleName.EntityFrameworkCore\MyCompanyName.MyProjectName.MyModuleName.EntityFrameworkCore.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Logs\**"/>
|
|
<Content Remove="Logs\**"/>
|
|
<EmbeddedResource Remove="Logs\**"/>
|
|
<None Remove="Logs\**"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
<PrivateAssets>compile; contentFiles; build; buildMultitargeting; buildTransitive; analyzers; native</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="$(UserProfile)\.nuget\packages\*\*\contentFiles\any\*\*.abppkg*.json"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|