aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/WixToolsetTest.Core.Native/CabinetFixture.cs6
-rw-r--r--src/test/WixToolsetTest.Core.Native/WixToolsetTest.Core.Native.csproj4
2 files changed, 7 insertions, 3 deletions
diff --git a/src/test/WixToolsetTest.Core.Native/CabinetFixture.cs b/src/test/WixToolsetTest.Core.Native/CabinetFixture.cs
index bc8f0ff8..fba0d5c9 100644
--- a/src/test/WixToolsetTest.Core.Native/CabinetFixture.cs
+++ b/src/test/WixToolsetTest.Core.Native/CabinetFixture.cs
@@ -2,11 +2,11 @@
2 2
3namespace WixToolsetTest.CoreNative 3namespace WixToolsetTest.CoreNative
4{ 4{
5 using System;
6 using System.IO; 5 using System.IO;
7 using System.Linq; 6 using System.Linq;
8 using WixToolset.Core.Native; 7 using WixToolset.Core.Native;
9 using WixToolsetTest.CoreNative.Utility; 8 using WixToolsetTest.CoreNative.Utility;
9 using WixToolset.Data;
10 using Xunit; 10 using Xunit;
11 11
12 public class CabinetFixture 12 public class CabinetFixture
@@ -22,7 +22,7 @@ namespace WixToolsetTest.CoreNative
22 var files = new[] { new CabinetCompressFile(TestData.Get(@"TestData\test.txt"), "test.txt") }; 22 var files = new[] { new CabinetCompressFile(TestData.Get(@"TestData\test.txt"), "test.txt") };
23 23
24 var cabinet = new Cabinet(cabPath); 24 var cabinet = new Cabinet(cabPath);
25 cabinet.Compress(files, CabinetCompressionLevel.Low); 25 cabinet.Compress(files, CompressionLevel.Low);
26 26
27 Assert.True(File.Exists(cabPath)); 27 Assert.True(File.Exists(cabPath));
28 } 28 }
@@ -84,7 +84,7 @@ namespace WixToolsetTest.CoreNative
84 var files = new[] { new CabinetCompressFile(TestData.Get(@"TestData\test.txt"), "test.txt") }; 84 var files = new[] { new CabinetCompressFile(TestData.Get(@"TestData\test.txt"), "test.txt") };
85 85
86 var cabinet = new Cabinet(cabinetPath); 86 var cabinet = new Cabinet(cabinetPath);
87 cabinet.Compress(files, CabinetCompressionLevel.Low); 87 cabinet.Compress(files, CompressionLevel.Low);
88 } 88 }
89 89
90 // Extract. 90 // Extract.
diff --git a/src/test/WixToolsetTest.Core.Native/WixToolsetTest.Core.Native.csproj b/src/test/WixToolsetTest.Core.Native/WixToolsetTest.Core.Native.csproj
index 47396ead..263712bb 100644
--- a/src/test/WixToolsetTest.Core.Native/WixToolsetTest.Core.Native.csproj
+++ b/src/test/WixToolsetTest.Core.Native/WixToolsetTest.Core.Native.csproj
@@ -17,6 +17,10 @@
17 </ItemGroup> 17 </ItemGroup>
18 18
19 <ItemGroup> 19 <ItemGroup>
20 <PackageReference Include="WixToolset.Data" Version="4.0.*" PrivateAssets="All" />
21 </ItemGroup>
22
23 <ItemGroup>
20 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> 24 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
21 <PackageReference Include="xunit" Version="2.4.1" /> 25 <PackageReference Include="xunit" Version="2.4.1" />
22 <PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" PrivateAssets="All" /> 26 <PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" PrivateAssets="All" />