-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathOrderManagement.Tests.csproj
More file actions
40 lines (34 loc) · 1.76 KB
/
OrderManagement.Tests.csproj
File metadata and controls
40 lines (34 loc) · 1.76 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<UseLocalSharpCoreDbSources Condition="'$(UseLocalSharpCoreDbSources)' == '' and Exists('..\..\..\src\SharpCoreDB.EventSourcing\SharpCoreDB.EventSourcing.csproj')">true</UseLocalSharpCoreDbSources>
<UseLocalSharpCoreDbSources Condition="'$(UseLocalSharpCoreDbSources)' == ''">false</UseLocalSharpCoreDbSources>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
<PackageReference Include="xunit.v3" Version="3.2.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="'$(UseLocalSharpCoreDbSources)' == 'true'">
<ProjectReference Include="..\..\..\src\SharpCoreDB.EventSourcing\SharpCoreDB.EventSourcing.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(UseLocalSharpCoreDbSources)' != 'true'">
<PackageReference Include="SharpCoreDB.EventSourcing" Version="1.7.0" />
</ItemGroup>
<!-- Include OrderManagement source files as links -->
<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.201" />
</ItemGroup>
</Project>