-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathInterfaceGenerator.Tests.csproj
More file actions
30 lines (24 loc) · 1.02 KB
/
Copy pathInterfaceGenerator.Tests.csproj
File metadata and controls
30 lines (24 loc) · 1.02 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
</ItemGroup>
<ItemGroup>
<!-- Rererence the source generator project -->
<ProjectReference Include="..\InterfaceGenerator\InterfaceGenerator.csproj"
OutputItemType="Analyzer"
ReferenceOutputAssembly="false" />
<!-- Don't reference the generator dll -->
<!-- Rererence the contract project "treat as an analyzer"-->
<ProjectReference Include="..\InterfaceGenerator.Contract\InterfaceGenerator.Contract.csproj"
OutputItemType="Analyzer"
ReferenceOutputAssembly="true" />
<!-- We DO reference the contract dll -->
</ItemGroup>
</Project>