forked from microsoft/dotnet-apiport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdir.props
23 lines (23 loc) · 1.04 KB
/
dir.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<OutputDrop>$(TF_BUILD_BINARIESDIRECTORY)</OutputDrop>
<OutputDrop Condition=" '$(OutputDrop)' == '' ">$(MSBuildThisFileDirectory)\bin\$(Configuration)\</OutputDrop>
<OutputIntermediate>$(MSBuildThisFileDirectory)\obj\$(Configuration)</OutputIntermediate>
<NoWarn>1570,1572,1573,1574,1591</NoWarn>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)\PortabilityTools.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup Condition="'$(OutputType)' == 'Exe'">
<FilesToSign Include="$(OutDir)\$(AssemblyName).exe">
<Authenticode>Microsoft</Authenticode>
</FilesToSign>
</ItemGroup>
<ItemGroup Condition="'$(OutputType)' == 'Library'">
<FilesToSign Include="$(OutDir)\$(AssemblyName).dll">
<Authenticode>Microsoft</Authenticode>
</FilesToSign>
</ItemGroup>
</Project>