aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-05-09 21:00:07 +1000
committerSean Hall <r.sean.hall@gmail.com>2020-05-09 21:18:24 +1000
commit00eb63b1a04fd455699b3d0ae5039c4092cf3aa7 (patch)
treef835e2270171be01291f4dfa2ba1eca0f575d463 /src
parent9bbba7d3cdbaf54257e39eb344a5eabbefe1bf2a (diff)
downloadwix-00eb63b1a04fd455699b3d0ae5039c4092cf3aa7.tar.gz
wix-00eb63b1a04fd455699b3d0ae5039c4092cf3aa7.tar.bz2
wix-00eb63b1a04fd455699b3d0ae5039c4092cf3aa7.zip
Set RuntimeIdentifier to win-x86 in most projects
now that the WixToolset.Core.Native package isn't providing wixnative.*.exe anymore.
Diffstat (limited to 'src')
-rw-r--r--src/ThmViewerPackage/ThmViewerPackage.wixproj2
-rw-r--r--src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj1
-rw-r--r--src/dotnet-wix/dotnet-wix.csproj1
-rw-r--r--src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj1
-rw-r--r--src/test/WixToolsetTest.WixCop/WixToolsetTest.WixCop.csproj3
-rw-r--r--src/wix/wix.csproj1
-rw-r--r--src/wixcop/WixCop.csproj1
7 files changed, 8 insertions, 2 deletions
diff --git a/src/ThmViewerPackage/ThmViewerPackage.wixproj b/src/ThmViewerPackage/ThmViewerPackage.wixproj
index ec2400bd..a0351aca 100644
--- a/src/ThmViewerPackage/ThmViewerPackage.wixproj
+++ b/src/ThmViewerPackage/ThmViewerPackage.wixproj
@@ -23,7 +23,7 @@
23 </ProjectReference> 23 </ProjectReference>
24 </ItemGroup> 24 </ItemGroup>
25 25
26 <Import Project="$(OutputPath)\net461\wix.targets" /> 26 <Import Project="$(OutputPath)\net461\win-x86\wix.targets" />
27 27
28 <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> 28 <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
29 <PropertyGroup> 29 <PropertyGroup>
diff --git a/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj b/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj
index b86b1f53..cfa0b1d8 100644
--- a/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj
+++ b/src/WixToolset.BuildTasks/WixToolset.BuildTasks.csproj
@@ -8,6 +8,7 @@
8 <Title>WiX Toolset MSBuild Tasks</Title> 8 <Title>WiX Toolset MSBuild Tasks</Title>
9 <DebugType>embedded</DebugType> 9 <DebugType>embedded</DebugType>
10 <PublishRepositoryUrl>true</PublishRepositoryUrl> 10 <PublishRepositoryUrl>true</PublishRepositoryUrl>
11 <RuntimeIdentifier>win-x86</RuntimeIdentifier>
11 </PropertyGroup> 12 </PropertyGroup>
12 13
13 <PropertyGroup> 14 <PropertyGroup>
diff --git a/src/dotnet-wix/dotnet-wix.csproj b/src/dotnet-wix/dotnet-wix.csproj
index 08fa9530..a9c766a3 100644
--- a/src/dotnet-wix/dotnet-wix.csproj
+++ b/src/dotnet-wix/dotnet-wix.csproj
@@ -9,6 +9,7 @@
9 <NuspecFile>$(MSBuildThisFileName).nuspec</NuspecFile> 9 <NuspecFile>$(MSBuildThisFileName).nuspec</NuspecFile>
10 <NuspecBasePath>$(OutputPath)publish\dotnet-wix\</NuspecBasePath> 10 <NuspecBasePath>$(OutputPath)publish\dotnet-wix\</NuspecBasePath>
11 <NuspecProperties>Id=$(MSBuildThisFileName);Authors=$(Authors);Copyright=$(Copyright);Description=$(Description)</NuspecProperties> 11 <NuspecProperties>Id=$(MSBuildThisFileName);Authors=$(Authors);Copyright=$(Copyright);Description=$(Description)</NuspecProperties>
12 <RuntimeIdentifier>win-x86</RuntimeIdentifier>
12 </PropertyGroup> 13 </PropertyGroup>
13 14
14 <ItemGroup> 15 <ItemGroup>
diff --git a/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj b/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj
index 7573339f..b48f5477 100644
--- a/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj
+++ b/src/test/WixToolsetTest.BuildTasks/WixToolsetTest.BuildTasks.csproj
@@ -6,6 +6,7 @@
6 <TargetFramework>net461</TargetFramework> 6 <TargetFramework>net461</TargetFramework>
7 <IsPackable>false</IsPackable> 7 <IsPackable>false</IsPackable>
8 <DebugType>embedded</DebugType> 8 <DebugType>embedded</DebugType>
9 <RuntimeIdentifier>win-x86</RuntimeIdentifier>
9 </PropertyGroup> 10 </PropertyGroup>
10 11
11 <ItemGroup> 12 <ItemGroup>
diff --git a/src/test/WixToolsetTest.WixCop/WixToolsetTest.WixCop.csproj b/src/test/WixToolsetTest.WixCop/WixToolsetTest.WixCop.csproj
index c58b6091..787b8ca1 100644
--- a/src/test/WixToolsetTest.WixCop/WixToolsetTest.WixCop.csproj
+++ b/src/test/WixToolsetTest.WixCop/WixToolsetTest.WixCop.csproj
@@ -3,9 +3,10 @@
3 3
4<Project Sdk="Microsoft.NET.Sdk"> 4<Project Sdk="Microsoft.NET.Sdk">
5 <PropertyGroup> 5 <PropertyGroup>
6 <TargetFramework>netcoreapp2.1</TargetFramework> 6 <TargetFramework>net461</TargetFramework>
7 <IsPackable>false</IsPackable> 7 <IsPackable>false</IsPackable>
8 <DebugType>embedded</DebugType> 8 <DebugType>embedded</DebugType>
9 <RuntimeIdentifier>win-x86</RuntimeIdentifier>
9 </PropertyGroup> 10 </PropertyGroup>
10 11
11 <PropertyGroup> 12 <PropertyGroup>
diff --git a/src/wix/wix.csproj b/src/wix/wix.csproj
index 4fd8c8ee..c74cf006 100644
--- a/src/wix/wix.csproj
+++ b/src/wix/wix.csproj
@@ -10,6 +10,7 @@
10 <DebugType>embedded</DebugType> 10 <DebugType>embedded</DebugType>
11 <PublishRepositoryUrl>true</PublishRepositoryUrl> 11 <PublishRepositoryUrl>true</PublishRepositoryUrl>
12 <!-- <PackAsTool>true</PackAsTool> --> 12 <!-- <PackAsTool>true</PackAsTool> -->
13 <RuntimeIdentifier>win-x86</RuntimeIdentifier>
13 </PropertyGroup> 14 </PropertyGroup>
14 15
15 <PropertyGroup> 16 <PropertyGroup>
diff --git a/src/wixcop/WixCop.csproj b/src/wixcop/WixCop.csproj
index 0e6be055..7021d9d7 100644
--- a/src/wixcop/WixCop.csproj
+++ b/src/wixcop/WixCop.csproj
@@ -10,6 +10,7 @@
10 <DebugType>embedded</DebugType> 10 <DebugType>embedded</DebugType>
11 <PublishRepositoryUrl>true</PublishRepositoryUrl> 11 <PublishRepositoryUrl>true</PublishRepositoryUrl>
12 <!-- <PackAsTool>true</PackAsTool> --> 12 <!-- <PackAsTool>true</PackAsTool> -->
13 <RuntimeIdentifier>win-x86</RuntimeIdentifier>
13 </PropertyGroup> 14 </PropertyGroup>
14 15
15 <PropertyGroup> 16 <PropertyGroup>