diff options
Diffstat (limited to 'src/ext/Dependency/test')
-rw-r--r-- | src/ext/Dependency/test/WixToolsetTest.Dependency/DependencyExtensionFixture.cs | 9 | ||||
-rw-r--r-- | src/ext/Dependency/test/WixToolsetTest.Dependency/WixToolsetTest.Dependency.csproj | 7 |
2 files changed, 9 insertions, 7 deletions
diff --git a/src/ext/Dependency/test/WixToolsetTest.Dependency/DependencyExtensionFixture.cs b/src/ext/Dependency/test/WixToolsetTest.Dependency/DependencyExtensionFixture.cs index 6190a4e0..ade2a12e 100644 --- a/src/ext/Dependency/test/WixToolsetTest.Dependency/DependencyExtensionFixture.cs +++ b/src/ext/Dependency/test/WixToolsetTest.Dependency/DependencyExtensionFixture.cs | |||
@@ -4,14 +4,15 @@ namespace WixToolsetTest.Dependency | |||
4 | { | 4 | { |
5 | using System.Linq; | 5 | using System.Linq; |
6 | using System.Text.RegularExpressions; | 6 | using System.Text.RegularExpressions; |
7 | using WixInternal.TestSupport; | 7 | using Microsoft.VisualStudio.TestTools.UnitTesting; |
8 | using WixInternal.Core.TestPackage; | 8 | using WixInternal.MSTestSupport; |
9 | using WixInternal.Core.MSTestPackage; | ||
9 | using WixToolset.Dependency; | 10 | using WixToolset.Dependency; |
10 | using Xunit; | ||
11 | 11 | ||
12 | [TestClass] | ||
12 | public class DependencyExtensionFixture | 13 | public class DependencyExtensionFixture |
13 | { | 14 | { |
14 | [Fact] | 15 | [TestMethod] |
15 | public void CanBuildUsingProvides() | 16 | public void CanBuildUsingProvides() |
16 | { | 17 | { |
17 | var folder = TestData.Get(@"TestData\UsingProvides"); | 18 | var folder = TestData.Get(@"TestData\UsingProvides"); |
diff --git a/src/ext/Dependency/test/WixToolsetTest.Dependency/WixToolsetTest.Dependency.csproj b/src/ext/Dependency/test/WixToolsetTest.Dependency/WixToolsetTest.Dependency.csproj index 70b56f45..1fd46c63 100644 --- a/src/ext/Dependency/test/WixToolsetTest.Dependency/WixToolsetTest.Dependency.csproj +++ b/src/ext/Dependency/test/WixToolsetTest.Dependency/WixToolsetTest.Dependency.csproj | |||
@@ -1,10 +1,10 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 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. --> | 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 | 3 | ||
4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="MSTest.Sdk"> |
5 | <PropertyGroup> | 5 | <PropertyGroup> |
6 | <TargetFramework>net6.0</TargetFramework> | 6 | <TargetFramework>net6.0</TargetFramework> |
7 | <IsWixTestProject>true</IsWixTestProject> | 7 | <IsWixMSTestProject>true</IsWixMSTestProject> |
8 | </PropertyGroup> | 8 | </PropertyGroup> |
9 | 9 | ||
10 | <ItemGroup> | 10 | <ItemGroup> |
@@ -16,6 +16,7 @@ | |||
16 | </ItemGroup> | 16 | </ItemGroup> |
17 | 17 | ||
18 | <ItemGroup> | 18 | <ItemGroup> |
19 | <PackageReference Include="WixInternal.Core.TestPackage" /> | 19 | <PackageReference Include="WixInternal.MSTestSupport" /> |
20 | <PackageReference Include="WixInternal.Core.MSTestPackage" /> | ||
20 | </ItemGroup> | 21 | </ItemGroup> |
21 | </Project> | 22 | </Project> |