diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-05-10 13:49:09 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-05-10 14:20:58 +1000 |
| commit | a5f59cb11a6372a6da8540bd1bebf6dec20e92e3 (patch) | |
| tree | 95c20f7962fca750fd48d1a6118f506262659d84 /src/dotnet-wix | |
| parent | 00eb63b1a04fd455699b3d0ae5039c4092cf3aa7 (diff) | |
| download | wix-a5f59cb11a6372a6da8540bd1bebf6dec20e92e3.tar.gz wix-a5f59cb11a6372a6da8540bd1bebf6dec20e92e3.tar.bz2 wix-a5f59cb11a6372a6da8540bd1bebf6dec20e92e3.zip | |
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.
Diffstat (limited to 'src/dotnet-wix')
| -rw-r--r-- | src/dotnet-wix/dotnet-wix.csproj | 3 |
1 files changed, 1 insertions, 2 deletions
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 @@ | |||
| 3 | 3 | ||
| 4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
| 5 | <PropertyGroup> | 5 | <PropertyGroup> |
| 6 | <TargetFramework>netstandard2.0</TargetFramework> | 6 | <TargetFramework>netcoreapp2.1</TargetFramework> |
| 7 | <IncludeBuildOutput>false</IncludeBuildOutput> | 7 | <IncludeBuildOutput>false</IncludeBuildOutput> |
| 8 | <Description>WiX Toolset Command-line interface</Description> | 8 | <Description>WiX Toolset Command-line interface</Description> |
| 9 | <NuspecFile>$(MSBuildThisFileName).nuspec</NuspecFile> | 9 | <NuspecFile>$(MSBuildThisFileName).nuspec</NuspecFile> |
| 10 | <NuspecBasePath>$(OutputPath)publish\dotnet-wix\</NuspecBasePath> | 10 | <NuspecBasePath>$(OutputPath)publish\dotnet-wix\</NuspecBasePath> |
| 11 | <NuspecProperties>Id=$(MSBuildThisFileName);Authors=$(Authors);Copyright=$(Copyright);Description=$(Description)</NuspecProperties> | 11 | <NuspecProperties>Id=$(MSBuildThisFileName);Authors=$(Authors);Copyright=$(Copyright);Description=$(Description)</NuspecProperties> |
| 12 | <RuntimeIdentifier>win-x86</RuntimeIdentifier> | ||
| 13 | </PropertyGroup> | 12 | </PropertyGroup> |
| 14 | 13 | ||
| 15 | <ItemGroup> | 14 | <ItemGroup> |
