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.
24 lines
1.1 KiB
24 lines
1.1 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<RootNamespace>Acme.BookStore</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Acme.BookStore.Domain\Acme.BookStore.Domain.csproj" />
|
|
<ProjectReference Include="..\Acme.BookStore.Application.Contracts\Acme.BookStore.Application.Contracts.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Volo.Abp.Account.Application" Version="0.21.0" />
|
|
<PackageReference Include="Volo.Abp.Identity.Application" Version="0.21.0" />
|
|
<PackageReference Include="Volo.Abp.PermissionManagement.Application" Version="0.21.0" />
|
|
<PackageReference Include="Volo.Abp.TenantManagement.Application" Version="0.21.0" />
|
|
<PackageReference Include="Volo.Abp.FeatureManagement.Application" Version="0.21.0" />
|
|
<ProjectReference Include="..\..\..\modules\book-management\src\Acme.BookStore.BookManagement.Application\Acme.BookStore.BookManagement.Application.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|