diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-08-17 14:45:59 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-08-17 14:47:49 -0500 |
commit | 1759f80b0d750c7908e24b25b13f1a2f2511c961 (patch) | |
tree | 33c5d151fc8dbfaffbec43983561cc598d475018 /src | |
parent | 6ce398594a319b76ca6e27c06a6fd1759bf367fd (diff) | |
download | wix-1759f80b0d750c7908e24b25b13f1a2f2511c961.tar.gz wix-1759f80b0d750c7908e24b25b13f1a2f2511c961.tar.bz2 wix-1759f80b0d750c7908e24b25b13f1a2f2511c961.zip |
Only target all frameworks in Release
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Extensibility/WixToolset.Extensibility.csproj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/WixToolset.Extensibility/WixToolset.Extensibility.csproj b/src/WixToolset.Extensibility/WixToolset.Extensibility.csproj index 5a5e7dc1..44a2243c 100644 --- a/src/WixToolset.Extensibility/WixToolset.Extensibility.csproj +++ b/src/WixToolset.Extensibility/WixToolset.Extensibility.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 | <Title>WiX Toolset Extensibility</Title> | 8 | <Title>WiX Toolset Extensibility</Title> |
8 | <Description></Description> | 9 | <Description></Description> |
9 | <DebugType>embedded</DebugType> | 10 | <DebugType>embedded</DebugType> |