-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDirectory.Build.targets
26 lines (24 loc) · 1.18 KB
/
Directory.Build.targets
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
<Project>
<ItemGroup>
<!--
This reference is required since we are not consuming the library as a
PackageReference item.
-->
<ProjectReference Include="$(MSBuildThisFileDirectory)../analyzers/analyzers.csproj"
OutputItemType="Analyzer"
ReferenceOutputAssembly="false" />
<ProjectReference Include="$(MSBuildThisFileDirectory)../hosting/hosting.csproj" />
<ProjectReference Include="$(MSBuildThisFileDirectory)../injection/injection.csproj" />
<ProjectReference Include="$(MSBuildThisFileDirectory)../memory/memory.csproj" />
<ProjectReference Include="$(MSBuildThisFileDirectory)../system/system.csproj" />
</ItemGroup>
<!--
These imports are required here since we are not consuming the library as a
PackageReference item.
-->
<Import Project="../hosting/hosting.targets" />
<Import Project="../injection/injection.targets" />
<Import Project="../memory/memory.targets" />
<Import Project="../system/system.targets" />
<Import Project="$([MSBuild]::GetPathOfFileAbove('$(MSBuildThisFile)', '$(MSBuildThisFileDirectory)..'))" />
</Project>