main
csproj 27 lines 1.05 KB
Raw
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- 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. -->
3
4 <Project Sdk="Microsoft.NET.Sdk">
5 <PropertyGroup>
6 <TargetFramework>net6.0-windows</TargetFramework>
7 <PlatformTarget>x64</PlatformTarget>
8 <IsWixTestProject>true</IsWixTestProject>
9 </PropertyGroup>
10
11 <ItemGroup>
12 <Content Include="runtests.cmd" CopyToOutputDirectory="PreserveNewest" />
13 </ItemGroup>
14
15 <ItemGroup>
16 <ProjectReference Include="..\WixTestTools\WixTestTools.csproj" />
17 </ItemGroup>
18
19 <ItemGroup>
20 <PackageReference Include="Microsoft.AspNetCore.Owin" />
21 <PackageReference Include="Microsoft.Win32.Registry" />
22 <PackageReference Include="System.Security.Principal.Windows" />
23 <PackageReference Include="WixInternal.TestSupport" />
24 <PackageReference Include="WixToolset.Data" />
25 <PackageReference Include="WixToolset.BootstrapperApplicationApi" />
26 </ItemGroup>
27 </Project>