aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-10-20 00:36:54 -0700
committerRob Mensching <rob@firegiant.com>2019-10-20 00:52:13 -0700
commitd9645d0faf28c2adbad249b4db047df47942160e (patch)
tree0ee22aa28c6f59f5c88c5e8f9fc1ddc330548cfd /src/WixToolset.Core
parent6155da0bc9e7faa97612d15def98dd68ea2557cd (diff)
downloadwix-d9645d0faf28c2adbad249b4db047df47942160e.tar.gz
wix-d9645d0faf28c2adbad249b4db047df47942160e.tar.bz2
wix-d9645d0faf28c2adbad249b4db047df47942160e.zip
Better support all .NETs and remove unnecessary NuGet workarounds
Diffstat (limited to 'src/WixToolset.Core')
-rw-r--r--src/WixToolset.Core/WixToolset.Core.csproj6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core/WixToolset.Core.csproj b/src/WixToolset.Core/WixToolset.Core.csproj
index d573cbda..4e205641 100644
--- a/src/WixToolset.Core/WixToolset.Core.csproj
+++ b/src/WixToolset.Core/WixToolset.Core.csproj
@@ -3,7 +3,7 @@
3 3
4<Project Sdk="Microsoft.NET.Sdk"> 4<Project Sdk="Microsoft.NET.Sdk">
5 <PropertyGroup> 5 <PropertyGroup>
6 <TargetFramework>netstandard2.0</TargetFramework> 6 <TargetFrameworks>netstandard2.0;net461;net472</TargetFrameworks>
7 <Description>Core</Description> 7 <Description>Core</Description>
8 <Title>WiX Toolset Core</Title> 8 <Title>WiX Toolset Core</Title>
9 <DebugType>embedded</DebugType> 9 <DebugType>embedded</DebugType>
@@ -20,8 +20,8 @@
20 you update these here, be sure to update them there. 20 you update these here, be sure to update them there.
21 --> 21 -->
22 <ItemGroup> 22 <ItemGroup>
23 <PackageReference Include="System.IO.FileSystem.AccessControl" Version="4.5.0" /> 23 <PackageReference Include="System.IO.FileSystem.AccessControl" Version="4.6.0" />
24 <PackageReference Include="System.Text.Encoding.CodePages" Version="4.5.0" /> 24 <PackageReference Include="System.Text.Encoding.CodePages" Version="4.6.0" />
25 </ItemGroup> 25 </ItemGroup>
26 26
27 <ItemGroup> 27 <ItemGroup>