main
targets 25 lines 1.17 KB
Raw
1 <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
2
3 <Project>
4 <PropertyGroup>
5 <CreateDocumentation Condition=" '$(CreateDocumentationFile)'!='true' ">false</CreateDocumentation>
6 <DocumentationFile Condition=" '$(CreateDocumentationFile)'=='true' ">$(OutputPath)\$(AssemblyName).xml</DocumentationFile>
7 <DefineConstants Condition=" '$(Configuration)'=='Debug' ">$(DefineConstants);DEBUG</DefineConstants>
8 </PropertyGroup>
9
10 <PropertyGroup Condition=" '$(IsWixTestProject)'=='true' ">
11 <RollForward>Major</RollForward>
12 <IsPackable>false</IsPackable>
13 <SignOutput>false</SignOutput>
14 </PropertyGroup>
15
16 <ItemGroup Condition=" '$(IsWixTestProject)'=='true' ">
17 <PackageReference Include="Microsoft.NET.Test.Sdk" />
18 <PackageReference Include="xunit" />
19 <PackageReference Include="xunit.runner.visualstudio" PrivateAssets="All" />
20 </ItemGroup>
21
22 <ItemGroup Condition=" '$(IsWixTestProject)'!='true' ">
23 <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
24 </ItemGroup>
25 </Project>