@joebigelow / wix-1 / commits / 1759f80b

Only target all frameworks in Release

Sean Hall committed Aug 17, 2020 at 14:45 UTC 1759f80b0d750c7908e24b25b13f1a2f2511c961
1 file changed +2 -1
src/WixToolset.Extensibility/WixToolset.Extensibility.csproj
+2 -1
@@ -3,7 +3,8 @@
3
4 <Project Sdk="Microsoft.NET.Sdk">
5 <PropertyGroup>
6 - <TargetFrameworks>netstandard2.0;net461;net472</TargetFrameworks>
6 + <TargetFrameworks>netstandard2.0</TargetFrameworks>
7 + <TargetFrameworks Condition=" '$(Configuration)'=='Release' ">$(TargetFrameworks);net461;net472</TargetFrameworks>
8 <Title>WiX Toolset Extensibility</Title>
9 <Description></Description>
10 <DebugType>embedded</DebugType>