@joebigelow / wix / commits / c6779d3c

Only target all frameworks in Release

Sean Hall committed Aug 17, 2020 at 14:40 UTC c6779d3cb55a77609db839258e3c1f6db7490a70
1 file changed +2 -1
src/WixToolset.Data/WixToolset.Data.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 <LangVersion>7.3</LangVersion>
9 <Title>WiX Toolset Data</Title>
10 <Description></Description>