diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-08-17 14:55:17 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-08-17 14:59:04 -0500 |
commit | 2c040e2d5b401af3607cf6e482cffeaa511d167a (patch) | |
tree | c4b2dff1e3554b256e5f9a61266ccfddc82d1d4f | |
parent | d26157531381aba81d2cac15e424b7e5c738253a (diff) | |
download | wix-2c040e2d5b401af3607cf6e482cffeaa511d167a.tar.gz wix-2c040e2d5b401af3607cf6e482cffeaa511d167a.tar.bz2 wix-2c040e2d5b401af3607cf6e482cffeaa511d167a.zip |
Only target all frameworks in Release
5 files changed, 10 insertions, 5 deletions
diff --git a/src/WixToolset.Core.Burn/WixToolset.Core.Burn.csproj b/src/WixToolset.Core.Burn/WixToolset.Core.Burn.csproj index ac99b8b3..1571b6a0 100644 --- a/src/WixToolset.Core.Burn/WixToolset.Core.Burn.csproj +++ b/src/WixToolset.Core.Burn/WixToolset.Core.Burn.csproj | |||
@@ -3,7 +3,8 @@ | |||
3 | 3 | ||
4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
5 | <PropertyGroup> | 5 | <PropertyGroup> |
6 | <TargetFrameworks>netstandard2.0;net461;net472</TargetFrameworks> | 6 | <TargetFrameworks>netstandard2.0</TargetFrameworks> |
7 | <TargetFrameworks Condition=" '$(Configuration)'=='Release' ">$(TargetFrameworks);net461;net472</TargetFrameworks> | ||
7 | <Description>Core Burn</Description> | 8 | <Description>Core Burn</Description> |
8 | <Title>WiX Toolset Core Burn</Title> | 9 | <Title>WiX Toolset Core Burn</Title> |
9 | <DebugType>embedded</DebugType> | 10 | <DebugType>embedded</DebugType> |
diff --git a/src/WixToolset.Core.ExtensionCache/WixToolset.Core.ExtensionCache.csproj b/src/WixToolset.Core.ExtensionCache/WixToolset.Core.ExtensionCache.csproj index cd10c7d8..78c94d31 100644 --- a/src/WixToolset.Core.ExtensionCache/WixToolset.Core.ExtensionCache.csproj +++ b/src/WixToolset.Core.ExtensionCache/WixToolset.Core.ExtensionCache.csproj | |||
@@ -3,7 +3,8 @@ | |||
3 | 3 | ||
4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
5 | <PropertyGroup> | 5 | <PropertyGroup> |
6 | <TargetFrameworks>netstandard2.0;net461;net472</TargetFrameworks> | 6 | <TargetFrameworks>netstandard2.0</TargetFrameworks> |
7 | <TargetFrameworks Condition=" '$(Configuration)'=='Release' ">$(TargetFrameworks);net461;net472</TargetFrameworks> | ||
7 | <Description>Extension Cache</Description> | 8 | <Description>Extension Cache</Description> |
8 | <Title>WiX Toolset Extension Cache</Title> | 9 | <Title>WiX Toolset Extension Cache</Title> |
9 | <DebugType>embedded</DebugType> | 10 | <DebugType>embedded</DebugType> |
diff --git a/src/WixToolset.Core.TestPackage/WixToolset.Core.TestPackage.csproj b/src/WixToolset.Core.TestPackage/WixToolset.Core.TestPackage.csproj index 703c068f..6a8dfdf4 100644 --- a/src/WixToolset.Core.TestPackage/WixToolset.Core.TestPackage.csproj +++ b/src/WixToolset.Core.TestPackage/WixToolset.Core.TestPackage.csproj | |||
@@ -3,7 +3,8 @@ | |||
3 | 3 | ||
4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
5 | <PropertyGroup> | 5 | <PropertyGroup> |
6 | <TargetFrameworks>netstandard2.0;net461;net472</TargetFrameworks> | 6 | <TargetFrameworks>netstandard2.0</TargetFrameworks> |
7 | <TargetFrameworks Condition=" '$(Configuration)'=='Release' ">$(TargetFrameworks);net461;net472</TargetFrameworks> | ||
7 | <Description>Internal WiX Toolset Test Package</Description> | 8 | <Description>Internal WiX Toolset Test Package</Description> |
8 | <DebugType>embedded</DebugType> | 9 | <DebugType>embedded</DebugType> |
9 | <PublishRepositoryUrl>true</PublishRepositoryUrl> | 10 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
diff --git a/src/WixToolset.Core.WindowsInstaller/WixToolset.Core.WindowsInstaller.csproj b/src/WixToolset.Core.WindowsInstaller/WixToolset.Core.WindowsInstaller.csproj index 32ed50f9..b7e4d5ed 100644 --- a/src/WixToolset.Core.WindowsInstaller/WixToolset.Core.WindowsInstaller.csproj +++ b/src/WixToolset.Core.WindowsInstaller/WixToolset.Core.WindowsInstaller.csproj | |||
@@ -3,7 +3,8 @@ | |||
3 | 3 | ||
4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
5 | <PropertyGroup> | 5 | <PropertyGroup> |
6 | <TargetFrameworks>netstandard2.0;net461;net472</TargetFrameworks> | 6 | <TargetFrameworks>netstandard2.0</TargetFrameworks> |
7 | <TargetFrameworks Condition=" '$(Configuration)'=='Release' ">$(TargetFrameworks);net461;net472</TargetFrameworks> | ||
7 | <Description>Core Windows Installer</Description> | 8 | <Description>Core Windows Installer</Description> |
8 | <Title>WiX Toolset Core Windows Installer</Title> | 9 | <Title>WiX Toolset Core Windows Installer</Title> |
9 | <DebugType>embedded</DebugType> | 10 | <DebugType>embedded</DebugType> |
diff --git a/src/WixToolset.Core/WixToolset.Core.csproj b/src/WixToolset.Core/WixToolset.Core.csproj index a2cc7d5a..c40df9cc 100644 --- a/src/WixToolset.Core/WixToolset.Core.csproj +++ b/src/WixToolset.Core/WixToolset.Core.csproj | |||
@@ -3,7 +3,8 @@ | |||
3 | 3 | ||
4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
5 | <PropertyGroup> | 5 | <PropertyGroup> |
6 | <TargetFrameworks>netstandard2.0;net461;net472</TargetFrameworks> | 6 | <TargetFrameworks>netstandard2.0</TargetFrameworks> |
7 | <TargetFrameworks Condition=" '$(Configuration)'=='Release' ">$(TargetFrameworks);net461;net472</TargetFrameworks> | ||
7 | <Description>Core</Description> | 8 | <Description>Core</Description> |
8 | <Title>WiX Toolset Core</Title> | 9 | <Title>WiX Toolset Core</Title> |
9 | <DebugType>embedded</DebugType> | 10 | <DebugType>embedded</DebugType> |