From 041c1bffe7b4fab2e48df11b8c7adbea9f5cf17d Mon Sep 17 00:00:00 2001 From: William Kent Date: Thu, 22 Oct 2020 21:03:39 -0400 Subject: [PATCH 1/2] (Probably) fix AppX deployment This will be verified after a followup commit. --- src/MSIExtract/MSIExtract.csproj | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/MSIExtract/MSIExtract.csproj b/src/MSIExtract/MSIExtract.csproj index 713e894..0961d93 100644 --- a/src/MSIExtract/MSIExtract.csproj +++ b/src/MSIExtract/MSIExtract.csproj @@ -11,8 +11,6 @@ app.manifest Setup.ico CS8002;CA1303;SA1101;IDE0009;NU1701 - - false From ab68b5a9567c65c168a6ac4278c7666e9f83437f Mon Sep 17 00:00:00 2001 From: William Kent Date: Thu, 22 Oct 2020 21:11:31 -0400 Subject: [PATCH 2/2] Do not repeatedly download the .NET runtime --- .../Directory.Build.targets | 22 ++++++++++++------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/src/MSIExtract.AppxPackage/Directory.Build.targets b/src/MSIExtract.AppxPackage/Directory.Build.targets index e027469..93b8859 100644 --- a/src/MSIExtract.AppxPackage/Directory.Build.targets +++ b/src/MSIExtract.AppxPackage/Directory.Build.targets @@ -8,21 +8,27 @@ - - - 3.1.8 + + 3.1.8 - x86 - x64 - arm64 + x86 + x64 + arm64 - $(RepoRootPath)obj\dotnet-runtimes\$(BundledNETVersion)-$(BundledNETArch) - + $(RepoRootPath)obj\dotnet-runtimes\$(BundledNETVersion)-$(BundledNETArch) + + + + + + + + <_VFSDir Condition="'$(BundledNETArch)' == 'x64' or '$(BundledNETArch)' == 'arm64'">ProgramFilesX64 <_VFSDir Condition="'$(BundledNETArch)' == 'x86'">ProgramFilesX86