From 04dd968856734d40e20802cd07e89f40ac871191 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Fri, 2 Apr 2021 14:54:40 -0700 Subject: Standardize on .NET Core v3.1 --- src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj | 6 +++--- .../WixToolset.Core.InternalPackage.nuspec | 2 +- src/WixToolset.Sdk/WixToolset.Sdk.csproj | 2 +- src/WixToolset.Sdk/tools/wix.targets | 2 +- src/dotnet-wix/dotnet-wix.csproj | 2 +- src/dotnet-wix/dotnet-wix.nuspec | 4 ++-- src/heat/heat.csproj | 4 ++-- src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj | 2 +- src/test/WixToolsetTest.Sdk/MsbuildUtilities.cs | 2 +- src/wix/wix.csproj | 4 ++-- 10 files changed, 15 insertions(+), 15 deletions(-) (limited to 'src') diff --git a/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj b/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj index e4dfaf2f..3a1c7f4c 100644 --- a/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj +++ b/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj @@ -3,12 +3,12 @@ - netcoreapp2.1;net461 + netcoreapp3.1;net461 WiX Toolset MSBuild Tasks embedded true - win-x86 + win-x86 AnyCPU @@ -28,7 +28,7 @@ - + diff --git a/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.nuspec b/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.nuspec index a461557a..ed08d2a7 100644 --- a/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.nuspec +++ b/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.nuspec @@ -13,7 +13,7 @@ - + diff --git a/src/WixToolset.Sdk/WixToolset.Sdk.csproj b/src/WixToolset.Sdk/WixToolset.Sdk.csproj index 041cccc8..2374bf86 100644 --- a/src/WixToolset.Sdk/WixToolset.Sdk.csproj +++ b/src/WixToolset.Sdk/WixToolset.Sdk.csproj @@ -3,7 +3,7 @@ - netcoreapp2.1 + netcoreapp3.1 false WiX Toolset MSBuild integration $(MSBuildThisFileName).nuspec diff --git a/src/WixToolset.Sdk/tools/wix.targets b/src/WixToolset.Sdk/tools/wix.targets index 6914d03e..5044bf5e 100644 --- a/src/WixToolset.Sdk/tools/wix.targets +++ b/src/WixToolset.Sdk/tools/wix.targets @@ -19,7 +19,7 @@ - $(MSBuildThisFileDirectory)netcoreapp2.1\ + $(MSBuildThisFileDirectory)netcoreapp3.1\ $(MSBuildThisFileDirectory)net461\x86\ $(MSBuildThisFileDirectory)net461\x64\ $(WixBinDir)WixToolset.BuildTasks.dll diff --git a/src/dotnet-wix/dotnet-wix.csproj b/src/dotnet-wix/dotnet-wix.csproj index 4cb9ba54..710ab5cd 100644 --- a/src/dotnet-wix/dotnet-wix.csproj +++ b/src/dotnet-wix/dotnet-wix.csproj @@ -3,7 +3,7 @@ - netcoreapp2.1 + netcoreapp3.1 false WiX Toolset Command-line interface $(MSBuildThisFileName).nuspec diff --git a/src/dotnet-wix/dotnet-wix.nuspec b/src/dotnet-wix/dotnet-wix.nuspec index 8226a4c7..66d42c75 100644 --- a/src/dotnet-wix/dotnet-wix.nuspec +++ b/src/dotnet-wix/dotnet-wix.nuspec @@ -14,7 +14,7 @@ - - + + diff --git a/src/heat/heat.csproj b/src/heat/heat.csproj index 53446e2f..08cf61c0 100644 --- a/src/heat/heat.csproj +++ b/src/heat/heat.csproj @@ -3,14 +3,14 @@ - netcoreapp2.1;net461 + netcoreapp3.1;net461 Exe Harvester WiX Harvester embedded true - win-x86 + win-x86 app.config heat.exe.manifest LatestMajor diff --git a/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj b/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj index 95a88190..c01860cd 100644 --- a/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj +++ b/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj @@ -22,7 +22,7 @@ - + diff --git a/src/test/WixToolsetTest.Sdk/MsbuildUtilities.cs b/src/test/WixToolsetTest.Sdk/MsbuildUtilities.cs index cfb421b2..2e07af3a 100644 --- a/src/test/WixToolsetTest.Sdk/MsbuildUtilities.cs +++ b/src/test/WixToolsetTest.Sdk/MsbuildUtilities.cs @@ -17,7 +17,7 @@ namespace WixToolsetTest.Sdk public static class MsbuildUtilities { - public static readonly string WixMsbuildPath = Path.Combine(new Uri(typeof(MsbuildUtilities).Assembly.CodeBase).AbsolutePath, "..", "..", "publish", "WixToolset.Sdk"); + public static readonly string WixMsbuildPath = Path.Combine(Path.GetDirectoryName(new Uri(typeof(MsbuildUtilities).Assembly.CodeBase).AbsolutePath), "..", "publish", "WixToolset.Sdk"); public static readonly string WixPropsPath = Path.Combine(WixMsbuildPath, "build", "WixToolset.Sdk.props"); public static MsbuildRunnerResult BuildProject(BuildSystem buildSystem, string projectPath, string[] arguments = null, string configuration = "Release", bool? outOfProc = null, string verbosityLevel = "normal") diff --git a/src/wix/wix.csproj b/src/wix/wix.csproj index f414bf41..7fac5e95 100644 --- a/src/wix/wix.csproj +++ b/src/wix/wix.csproj @@ -3,14 +3,14 @@ - netcoreapp2.1;net461 + netcoreapp3.1;net461 Exe Compiler WiX Toolset Compiler embedded true - win-x86 + win-x86 app.config wix.exe.manifest Major -- cgit v1.2.3-55-g6feb