-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPatternKit.Generators.Tests.csproj
More file actions
43 lines (37 loc) · 1.93 KB
/
PatternKit.Generators.Tests.csproj
File metadata and controls
43 lines (37 loc) · 1.93 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
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<!-- Suppress warnings:
xUnit1031: Some tests intentionally use sync-over-async for generator testing
xUnit2002: NotNull on value types (GeneratedSourceResult is a struct) -->
<NoWarn>$(NoWarn);xUnit1031;xUnit2002</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="8.0.1" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.3.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.3.0" />
<PackageReference Include="System.Collections.Immutable" Version="10.0.5" />
<PackageReference Include="TinyBDD" Version="0.19.9" />
<PackageReference Include="TinyBDD.Xunit" Version="0.19.9" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Using Include="Xunit" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\PatternKit.Core\PatternKit.Core.csproj" />
<ProjectReference Include="..\..\src\PatternKit.Examples\PatternKit.Examples.csproj" />
<ProjectReference Include="..\..\src\PatternKit.Generators.Abstractions\PatternKit.Generators.Abstractions.csproj" />
<ProjectReference Include="..\..\src\PatternKit.Generators\PatternKit.Generators.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>