aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorBob Arnson <bob@joyofsetup.com>2019-10-24 17:16:31 -0400
committerBob Arnson <bob@firegiant.com>2019-10-24 17:20:04 -0400
commit014bc7918c05f01f819c07fac6e502e0f542a222 (patch)
treed95b7312a2b1afeda1115f304f5c7a394f055c83 /src/test
parent5ab9ec85e0f5c403631e3f054645ba8c7dcc058d (diff)
downloadwix-014bc7918c05f01f819c07fac6e502e0f542a222.tar.gz
wix-014bc7918c05f01f819c07fac6e502e0f542a222.tar.bz2
wix-014bc7918c05f01f819c07fac6e502e0f542a222.zip
Modernize tuples; update to latest dependencies.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj b/src/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj
index 7fe2dcff..3f04fea5 100644
--- a/src/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj
+++ b/src/test/WixToolsetTest.Netfx/WixToolsetTest.Netfx.csproj
@@ -1,4 +1,4 @@
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="Microsoft.NET.Sdk">
@@ -31,8 +31,11 @@
31 </ItemGroup> 31 </ItemGroup>
32 32
33 <ItemGroup> 33 <ItemGroup>
34 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" /> 34 <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.3.0" />
35 <PackageReference Include="xunit" Version="2.4.0" /> 35 <PackageReference Include="xunit" Version="2.4.1" />
36 <PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" /> 36 <PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
37 <PrivateAssets>all</PrivateAssets>
38 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
39 </PackageReference>
37 </ItemGroup> 40 </ItemGroup>
38</Project> 41</Project>