aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-12-11 22:56:54 -0500
committerBob Arnson <github@bobs.org>2021-12-12 15:13:53 -0500
commitebe9e91768d9514e8dbd617aaa05366365a05cf7 (patch)
treed9f0075df47e1caa89437d194655c24992b04314 /src/api
parentdc3c94f9c313d8509e304d6085af527a576cf623 (diff)
downloadwix-ebe9e91768d9514e8dbd617aaa05366365a05cf7.tar.gz
wix-ebe9e91768d9514e8dbd617aaa05366365a05cf7.tar.bz2
wix-ebe9e91768d9514e8dbd617aaa05366365a05cf7.zip
Switch to `net472` as Framework baseline.
Diffstat (limited to 'src/api')
-rw-r--r--src/api/burn/burn.proj1
-rw-r--r--src/api/wix/WixToolset.Data/WixToolset.Data.csproj2
-rw-r--r--src/api/wix/WixToolset.Extensibility/WixToolset.Extensibility.csproj2
-rw-r--r--src/api/wix/wix.proj1
4 files changed, 4 insertions, 2 deletions
diff --git a/src/api/burn/burn.proj b/src/api/burn/burn.proj
index 535f70e7..0aa838bf 100644
--- a/src/api/burn/burn.proj
+++ b/src/api/burn/burn.proj
@@ -27,6 +27,7 @@
27 <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=ARM64" /> 27 <ProjectReference Include="mbanative\mbanative.vcxproj" Properties="Platform=ARM64" />
28 28
29 <ProjectReference Include="WixToolset.Mba.Core\WixToolset.Mba.Core.csproj" Properties="Platform=AnyCPU" /> 29 <ProjectReference Include="WixToolset.Mba.Core\WixToolset.Mba.Core.csproj" Properties="Platform=AnyCPU" />
30 <ProjectReference Include="test\WixToolsetTest.Mba.Core\WixToolsetTest.Mba.Core.csproj" Properties="Platform=AnyCPU" />
30 31
31 <!-- Test --> 32 <!-- Test -->
32 <ProjectReference Include="test\BalUtilUnitTest\BalUtilUnitTest.vcxproj" Targets="Test" /> 33 <ProjectReference Include="test\BalUtilUnitTest\BalUtilUnitTest.vcxproj" Targets="Test" />
diff --git a/src/api/wix/WixToolset.Data/WixToolset.Data.csproj b/src/api/wix/WixToolset.Data/WixToolset.Data.csproj
index 11c3fd98..d139bc73 100644
--- a/src/api/wix/WixToolset.Data/WixToolset.Data.csproj
+++ b/src/api/wix/WixToolset.Data/WixToolset.Data.csproj
@@ -4,7 +4,7 @@
4<Project Sdk="Microsoft.NET.Sdk"> 4<Project Sdk="Microsoft.NET.Sdk">
5 <PropertyGroup> 5 <PropertyGroup>
6 <TargetFrameworks>netstandard2.0</TargetFrameworks> 6 <TargetFrameworks>netstandard2.0</TargetFrameworks>
7 <TargetFrameworks Condition=" '$(Configuration)'=='Release' ">$(TargetFrameworks);net461;net472</TargetFrameworks> 7 <TargetFrameworks Condition=" '$(Configuration)'=='Release' ">$(TargetFrameworks);net472</TargetFrameworks>
8 <LangVersion>7.3</LangVersion> 8 <LangVersion>7.3</LangVersion>
9 <Description>WiX Toolset Data</Description> 9 <Description>WiX Toolset Data</Description>
10 <DebugType>embedded</DebugType> 10 <DebugType>embedded</DebugType>
diff --git a/src/api/wix/WixToolset.Extensibility/WixToolset.Extensibility.csproj b/src/api/wix/WixToolset.Extensibility/WixToolset.Extensibility.csproj
index 38bec1b0..86ee754d 100644
--- a/src/api/wix/WixToolset.Extensibility/WixToolset.Extensibility.csproj
+++ b/src/api/wix/WixToolset.Extensibility/WixToolset.Extensibility.csproj
@@ -4,7 +4,7 @@
4<Project Sdk="Microsoft.NET.Sdk"> 4<Project Sdk="Microsoft.NET.Sdk">
5 <PropertyGroup> 5 <PropertyGroup>
6 <TargetFrameworks>netstandard2.0</TargetFrameworks> 6 <TargetFrameworks>netstandard2.0</TargetFrameworks>
7 <TargetFrameworks Condition=" '$(Configuration)'=='Release' ">$(TargetFrameworks);net461;net472</TargetFrameworks> 7 <TargetFrameworks Condition=" '$(Configuration)'=='Release' ">$(TargetFrameworks);net472</TargetFrameworks>
8 <Title>WiX Toolset Extensibility</Title> 8 <Title>WiX Toolset Extensibility</Title>
9 <Description></Description> 9 <Description></Description>
10 <DebugType>embedded</DebugType> 10 <DebugType>embedded</DebugType>
diff --git a/src/api/wix/wix.proj b/src/api/wix/wix.proj
index 3db83283..ea07e810 100644
--- a/src/api/wix/wix.proj
+++ b/src/api/wix/wix.proj
@@ -3,6 +3,7 @@
3 <!-- Build --> 3 <!-- Build -->
4 <ProjectReference Include="WixToolset.Data\WixToolset.Data.csproj" /> 4 <ProjectReference Include="WixToolset.Data\WixToolset.Data.csproj" />
5 <ProjectReference Include="WixToolset.Extensibility\WixToolset.Extensibility.csproj" /> 5 <ProjectReference Include="WixToolset.Extensibility\WixToolset.Extensibility.csproj" />
6 <ProjectReference Include="test\WixToolsetTest.Data\WixToolsetTest.Data.csproj" />
6 7
7 <!-- Pack --> 8 <!-- Pack -->
8 <ProjectReference Include="WixToolset.Data\WixToolset.Data.csproj" Targets="Pack" /> 9 <ProjectReference Include="WixToolset.Data\WixToolset.Data.csproj" Targets="Pack" />