-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathOrderManagement.PersistentDemo.csproj
More file actions
27 lines (22 loc) · 894 Bytes
/
OrderManagement.PersistentDemo.csproj
File metadata and controls
27 lines (22 loc) · 894 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
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.5.0</Version>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\src\SharpCoreDB.EventSourcing\SharpCoreDB.EventSourcing.csproj" />
<ProjectReference Include="..\..\..\src\SharpCoreDB\SharpCoreDB.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\OrderManagement\OrderEvents.cs" Link="OrderEvents.cs" />
<Compile Include="..\OrderManagement\OrderAggregate.cs" Link="OrderAggregate.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.200" />
</ItemGroup>
</Project>