-
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathbunit.generators.tests.csproj
More file actions
36 lines (31 loc) · 1.44 KB
/
bunit.generators.tests.csproj
File metadata and controls
36 lines (31 loc) · 1.44 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<RootNamespace>Bunit</RootNamespace>
<AssemblyName>Bunit.Generator.Tests</AssemblyName>
<ImplicitUsings>true</ImplicitUsings>
<SonarQubeTestProject>true</SonarQubeTestProject>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<SignAssembly>false</SignAssembly>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<InterceptorsPreviewNamespaces>$(InterceptorsPreviewNamespaces);Bunit</InterceptorsPreviewNamespaces>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Text.RegularExpressions" />
<PackageReference Include="Verify.SourceGenerators" />
<PackageReference Include="Verify.Xunit" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.SourceGenerators.Testing.XUnit" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\bunit.generators.internal\bunit.generators.internal.csproj" />
<ProjectReference Include="..\..\src\bunit.web\bunit.web.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="../xunit.runner.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>