-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathEventuous.Tests.csproj
More file actions
24 lines (24 loc) · 1.28 KB
/
Eventuous.Tests.csproj
File metadata and controls
24 lines (24 loc) · 1.28 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IncludeSutApp>true</IncludeSutApp>
<IncludeTestHelpers>true</IncludeTestHelpers>
<OutputType>Exe</OutputType>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations"/>
<PackageReference Include="NodaTime.Serialization.SystemTextJson"/>
<PackageReference Include="NodaTime.Bogus" />
<PackageReference Include="Microsoft.CodeAnalysis" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" PrivateAssets="all" />
<PackageReference Update="coverlet.collector">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LocalRoot)\Eventuous.Application\Eventuous.Application.csproj"/>
<ProjectReference Include="$(SrcRoot)\Testing\src\Eventuous.Testing\Eventuous.Testing.csproj"/>
<ProjectReference Include="$(LocalGenRoot)\Eventuous.Shared.Generators\Eventuous.Shared.Generators.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
</Project>