From a5f59cb11a6372a6da8540bd1bebf6dec20e92e3 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Sun, 10 May 2020 13:49:09 +1000 Subject: Remove x86 restriction (introduced from previous commit) from published contents. Remove unused net472 BuildTasks. Make BuildTasks target netcoreapp instead of netstandard since publishing isn't supported for netstandard. --- appveyor.cmd | 3 +-- src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj | 9 +++++---- src/WixToolset.MSBuild/WixToolset.MSBuild.csproj | 2 +- src/WixToolset.MSBuild/WixToolset.MSBuild.nuspec | 3 +-- src/WixToolset.MSBuild/WixToolset.MSBuild.props | 2 +- src/dotnet-wix/dotnet-wix.csproj | 3 +-- src/wix/wix.csproj | 3 ++- src/wixcop/WixCop.csproj | 3 ++- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/appveyor.cmd b/appveyor.cmd index 9335ca5a..d0dcee83 100644 --- a/appveyor.cmd +++ b/appveyor.cmd @@ -9,8 +9,7 @@ dotnet test -c Release src\test\WixToolsetTest.WixCop dotnet publish -c Release -o %_P%\dotnet-wix\ -f netcoreapp2.1 src\wix dotnet publish -c Release -o %_P%\WixToolset.MSBuild\net461\ -f net461 src\WixToolset.BuildTasks -dotnet publish -c Release -o %_P%\WixToolset.MSBuild\net472\ -f net472 src\WixToolset.BuildTasks -dotnet publish -c Release -o %_P%\WixToolset.MSBuild\netstandard2.0\ -f netstandard2.0 src\WixToolset.BuildTasks +dotnet publish -c Release -o %_P%\WixToolset.MSBuild\netcoreapp2.1\ -f netcoreapp2.1 src\WixToolset.BuildTasks @rem dotnet publish -c Release -o %_P%\netcoreapp2.1 -r win-x86 src\wix @rem dotnet publish -c Release -o %_P%\net461 -r win-x86 src\light diff --git a/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj b/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj index cfa0b1d8..8724f2fc 100644 --- a/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj +++ b/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj @@ -3,12 +3,13 @@ - netstandard2.0;net461;net472 + netcoreapp2.1;net461 WiX Toolset MSBuild Tasks embedded true - win-x86 + win-x86 + AnyCPU @@ -36,8 +37,8 @@ - - + + diff --git a/src/WixToolset.MSBuild/WixToolset.MSBuild.csproj b/src/WixToolset.MSBuild/WixToolset.MSBuild.csproj index 76e42911..5a9633ae 100644 --- a/src/WixToolset.MSBuild/WixToolset.MSBuild.csproj +++ b/src/WixToolset.MSBuild/WixToolset.MSBuild.csproj @@ -3,7 +3,7 @@ - netstandard2.0 + netcoreapp2.1 false WiX Toolset MSBuild integration $(MSBuildThisFileName).nuspec diff --git a/src/WixToolset.MSBuild/WixToolset.MSBuild.nuspec b/src/WixToolset.MSBuild/WixToolset.MSBuild.nuspec index ba16aa92..c9e5cdf2 100644 --- a/src/WixToolset.MSBuild/WixToolset.MSBuild.nuspec +++ b/src/WixToolset.MSBuild/WixToolset.MSBuild.nuspec @@ -13,7 +13,6 @@ - - + diff --git a/src/WixToolset.MSBuild/WixToolset.MSBuild.props b/src/WixToolset.MSBuild/WixToolset.MSBuild.props index b0b7e7e3..b1d207f4 100644 --- a/src/WixToolset.MSBuild/WixToolset.MSBuild.props +++ b/src/WixToolset.MSBuild/WixToolset.MSBuild.props @@ -3,7 +3,7 @@ - $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\tools\netstandard2.0\wix.targets')) + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\tools\netcoreapp2.1\wix.targets')) $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\tools\net461\wix.targets')) diff --git a/src/dotnet-wix/dotnet-wix.csproj b/src/dotnet-wix/dotnet-wix.csproj index a9c766a3..88010875 100644 --- a/src/dotnet-wix/dotnet-wix.csproj +++ b/src/dotnet-wix/dotnet-wix.csproj @@ -3,13 +3,12 @@ - netstandard2.0 + netcoreapp2.1 false WiX Toolset Command-line interface $(MSBuildThisFileName).nuspec $(OutputPath)publish\dotnet-wix\ Id=$(MSBuildThisFileName);Authors=$(Authors);Copyright=$(Copyright);Description=$(Description) - win-x86 diff --git a/src/wix/wix.csproj b/src/wix/wix.csproj index c74cf006..ef007849 100644 --- a/src/wix/wix.csproj +++ b/src/wix/wix.csproj @@ -10,7 +10,8 @@ embedded true - win-x86 + win-x86 + AnyCPU diff --git a/src/wixcop/WixCop.csproj b/src/wixcop/WixCop.csproj index 7021d9d7..8b3acf44 100644 --- a/src/wixcop/WixCop.csproj +++ b/src/wixcop/WixCop.csproj @@ -10,7 +10,8 @@ embedded true - win-x86 + win-x86 + AnyCPU -- cgit v1.2.3-55-g6feb