mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
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.
36 lines
1.6 KiB
36 lines
1.6 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
<RootNamespace>Acme.BookStore</RootNamespace>
|
|
<AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81;</AssetTargetFallback>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
|
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Logs\**" />
|
|
<Content Remove="Logs\**" />
|
|
<EmbeddedResource Remove="Logs\**" />
|
|
<None Remove="Logs\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.0" />
|
|
<PackageReference Include="Serilog.AspNetCore" Version="2.1.1" />
|
|
<PackageReference Include="Serilog.Sinks.File" Version="4.0.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="2.5.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Acme.BookStore.Application\Acme.BookStore.Application.csproj" />
|
|
<ProjectReference Include="..\Acme.BookStore.EntityFrameworkCore\Acme.BookStore.EntityFrameworkCore.csproj" />
|
|
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic" Version="0.11.0" />
|
|
<PackageReference Include="Volo.Abp.Autofac" Version="0.11.0" />
|
|
<PackageReference Include="Volo.Abp.Identity.Web" Version="0.11.0" />
|
|
<PackageReference Include="Volo.Abp.Account.Web" Version="0.11.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|