aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegrationFixture/WixToolsetTest.CoreIntegrationFixture.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegrationFixture/WixToolsetTest.CoreIntegrationFixture.csproj')
-rw-r--r--src/test/WixToolsetTest.CoreIntegrationFixture/WixToolsetTest.CoreIntegrationFixture.csproj45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegrationFixture/WixToolsetTest.CoreIntegrationFixture.csproj b/src/test/WixToolsetTest.CoreIntegrationFixture/WixToolsetTest.CoreIntegrationFixture.csproj
new file mode 100644
index 00000000..86482a19
--- /dev/null
+++ b/src/test/WixToolsetTest.CoreIntegrationFixture/WixToolsetTest.CoreIntegrationFixture.csproj
@@ -0,0 +1,45 @@
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>netcoreapp2.0</TargetFramework>
7 <IsPackable>false</IsPackable>
8 </PropertyGroup>
9
10 <PropertyGroup>
11 <NoWarn>NU1701</NoWarn>
12 </PropertyGroup>
13
14 <ItemGroup>
15 <None Remove="TestData\SingleFile\data\test.txt" />
16 <None Remove="TestData\SingleFile\Package.en-us.wxl" />
17 <None Remove="TestData\SingleFile\Package.wxs" />
18 <None Remove="TestData\SingleFile\PackageComponents.wxs" />
19 </ItemGroup>
20
21 <ItemGroup>
22 <Content Include="TestData\SingleFile\data\test.txt">
23 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
24 </Content>
25 <Content Include="TestData\SingleFile\Package.en-us.wxl">
26 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
27 </Content>
28 <Content Include="TestData\SingleFile\Package.wxs">
29 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
30 </Content>
31 <Content Include="TestData\SingleFile\PackageComponents.wxs">
32 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
33 </Content>
34 </ItemGroup>
35
36 <ItemGroup>
37 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0-preview-20170628-02" />
38 <PackageReference Include="xunit" Version="2.2.0" />
39 <PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
40 </ItemGroup>
41
42 <ItemGroup>
43 <ProjectReference Include="..\..\wix\wix.csproj" />
44 </ItemGroup>
45</Project>