-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.targets
More file actions
31 lines (26 loc) · 1.42 KB
/
Directory.Build.targets
File metadata and controls
31 lines (26 loc) · 1.42 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup Condition="'$(SignAssembly)'=='true'">
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)build/key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup Condition="'$(UseProjectSystem)'=='true'">
<!--<PackageReference Include="Microsoft.VisualStudio.ProjectSystem" Version="*" />-->
<Reference Include="Microsoft.VisualStudio.ProjectSystem.Managed.dll"
Private="false">
<HintPath>$(DevEnvDir)\Extensions\Microsoft\ManagedProjectSystem\Microsoft.VisualStudio.ProjectSystem.Managed.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.ProjectSystem.Managed.VS.dll"
Private="false">
<HintPath>$(DevEnvDir)\Extensions\Microsoft\ManagedProjectSystem\Microsoft.VisualStudio.ProjectSystem.Managed.VS.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.ProjectSystem.VS.dll" Private="false">
<HintPath>$(DevEnvDir)\CommonExtensions\Microsoft\Project\Microsoft.VisualStudio.ProjectSystem.VS.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.ProjectSystem.dll" Private="false">
<HintPath>$(DevEnvDir)\CommonExtensions\Microsoft\Project\Microsoft.VisualStudio.ProjectSystem.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='net472'">
<Using Remove="System.Net.Http" />
</ItemGroup>
</Project>