-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathTestLibrary.targets
More file actions
27 lines (21 loc) · 1.08 KB
/
TestLibrary.targets
File metadata and controls
27 lines (21 loc) · 1.08 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
<Project>
<Import
Project="$(MSBuildThisFileDirectory)Polyfill.targets" />
<Import Project="$(MSBuildThisFileDirectory)TUnit.Core\TUnit.Core.targets" />
<ItemGroup>
<ProjectReference Include="$(MSBuildThisFileDirectory)TUnit.Core\TUnit.Core.csproj" />
<ProjectReference
Include="$(MSBuildThisFileDirectory)TUnit.Core.SourceGenerator\TUnit.Core.SourceGenerator.csproj"
OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<ProjectReference
Include="$(MSBuildThisFileDirectory)TUnit.Analyzers\TUnit.Analyzers.csproj"
OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
<ProjectReference
Include="$(MSBuildThisFileDirectory)TUnit.Analyzers.CodeFixers\TUnit.Analyzers.CodeFixers.csproj"
OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
<ItemGroup Condition="'$(ImportTUnitGlobalUsings)' == 'true'">
<Using Include="TUnit.Core.HookType" Static="True" />
<Using Include="TUnit.Core" />
</ItemGroup>
</Project>