-
-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathNetCoreKit.Domain.csproj
More file actions
24 lines (19 loc) · 798 Bytes
/
NetCoreKit.Domain.csproj
File metadata and controls
24 lines (19 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\build\packages.props" />
<PropertyGroup>
<id>NetCoreKit.Domain</id>
<version>0.0.0</version>
<AssemblyName>NetCoreKit.Domain</AssemblyName>
<RootNamespace>NetCoreKit.Domain</RootNamespace>
<Title>The domain library for Cloud Native .NET Core Kit.</Title>
<Description>Supports DDD style with event approach in the library.</Description>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NetCoreKit.Utils\NetCoreKit.Utils.csproj" />
</ItemGroup>
</Project>