aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-03-03 13:54:13 -0800
committerRob Mensching <rob@firegiant.com>2021-03-03 13:56:40 -0800
commit68022b358a6d4abecf63a831023f17bdfee472a8 (patch)
tree1996a512de4a8c9d26f7c5233add0a2c72d14174 /src/test
parenta5fe70f726e8f428306ccba54037ce2ba055b1f8 (diff)
downloadwix-68022b358a6d4abecf63a831023f17bdfee472a8.tar.gz
wix-68022b358a6d4abecf63a831023f17bdfee472a8.tar.bz2
wix-68022b358a6d4abecf63a831023f17bdfee472a8.zip
Update to latest build infrastructure
Diffstat (limited to 'src/test')
-rw-r--r--src/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj b/src/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj
index acb9e4a4..1c41d176 100644
--- a/src/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj
+++ b/src/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj
@@ -4,22 +4,14 @@
4<Project Sdk="Microsoft.NET.Sdk"> 4<Project Sdk="Microsoft.NET.Sdk">
5 <PropertyGroup> 5 <PropertyGroup>
6 <TargetFramework>netcoreapp3.1</TargetFramework> 6 <TargetFramework>netcoreapp3.1</TargetFramework>
7 <DebugType>embedded</DebugType>
7 <IsPackable>false</IsPackable> 8 <IsPackable>false</IsPackable>
8 </PropertyGroup> 9 </PropertyGroup>
9 10
10 <ItemGroup> 11 <ItemGroup>
11 <Content Include="TestData\UsingDotNetCorePackages\BundleLatest.wxs" CopyToOutputDirectory="PreserveNewest" /> 12 <Content Include="TestData\**" CopyToOutputDirectory="PreserveNewest" />
12 <Content Include="TestData\UsingDotNetCorePackages\BundleLatest_x64.wxs" CopyToOutputDirectory="PreserveNewest" />
13 <Content Include="TestData\UsingNativeImage\example.txt" CopyToOutputDirectory="PreserveNewest" />
14 <Content Include="TestData\UsingNativeImage\Package.en-us.wxl" CopyToOutputDirectory="PreserveNewest" />
15 <Content Include="TestData\UsingNativeImage\Package.wxs" CopyToOutputDirectory="PreserveNewest" />
16 <Content Include="TestData\UsingNativeImage\PackageComponents.wxs" CopyToOutputDirectory="PreserveNewest" />
17 </ItemGroup> 13 </ItemGroup>
18 14
19 <Target Name="CopyExtensions" AfterTargets="Build">
20 <Copy DestinationFolder="$(OutputPath)" SourceFiles="@(WixExtension)" />
21 </Target>
22
23 <ItemGroup> 15 <ItemGroup>
24 <ProjectReference Include="..\..\wixext\WixToolset.Netfx.wixext.csproj" /> 16 <ProjectReference Include="..\..\wixext\WixToolset.Netfx.wixext.csproj" />
25 </ItemGroup> 17 </ItemGroup>
@@ -41,4 +33,8 @@
41 <PackageReference Include="xunit" Version="2.4.1" /> 33 <PackageReference Include="xunit" Version="2.4.1" />
42 <PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" PrivateAssets="All" /> 34 <PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" PrivateAssets="All" />
43 </ItemGroup> 35 </ItemGroup>
36
37 <Target Name="CopyExtensions" AfterTargets="Build">
38 <Copy DestinationFolder="$(OutputPath)" SourceFiles="@(WixExtension)" />
39 </Target>
44</Project> 40</Project>