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/wixcop/WixCop.csproj | |
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 '')
-rw-r--r-- | src/wixcop/WixCop.csproj | 3 |
1 files changed, 2 insertions, 1 deletions
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 @@ | |||
10 | <DebugType>embedded</DebugType> | 10 | <DebugType>embedded</DebugType> |
11 | <PublishRepositoryUrl>true</PublishRepositoryUrl> | 11 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
12 | <!-- <PackAsTool>true</PackAsTool> --> | 12 | <!-- <PackAsTool>true</PackAsTool> --> |
13 | <RuntimeIdentifier>win-x86</RuntimeIdentifier> | 13 | <RuntimeIdentifier Condition=" '$(RuntimeIdentifier)'=='' and '$(TargetFramework)'!='netcoreapp2.1' ">win-x86</RuntimeIdentifier> |
14 | <PlatformTarget>AnyCPU</PlatformTarget> | ||
14 | </PropertyGroup> | 15 | </PropertyGroup> |
15 | 16 | ||
16 | <PropertyGroup> | 17 | <PropertyGroup> |