22 строки
796 B
XML
22 строки
796 B
XML
<!-- Copyright (c) Microsoft. All rights reserved.
|
|
Licensed under the MIT license. See LICENSE file in the project root for full license information.-->
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<!--
|
|
Settings file which is directly imported by all of the test code projects in the repo.
|
|
-->
|
|
|
|
<Import Project="common.targets" />
|
|
|
|
<Choose>
|
|
<When Condition=" '$(SignAppForRelease)'=='true' ">
|
|
<PropertyGroup>
|
|
<DefineConstants>$(DefineConstants);ENABLE_SIGNING;</DefineConstants>
|
|
<SignAssembly>true</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>..\..\keys\FinalPublicKey.snk</AssemblyOriginatorKeyFile>
|
|
<DelaySign>true</DelaySign>
|
|
</PropertyGroup>
|
|
</When>
|
|
</Choose>
|
|
|
|
</Project> |