-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
41 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"msbuild-sdks": { | ||
"WixToolset.Sdk": "4.0.0-build-0143" | ||
"WixToolset.Sdk": "4.0.0-build-0157" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
<?xml version="1.0"?> | ||
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
|
||
|
||
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
<?include caerr.wxi ?> | ||
|
||
<Fragment> | ||
<UI Id="WixDependencyErrors"> | ||
<Error Id="$(var.msierrDependencyMissingDependencies)">!(loc.msierrDependencyMissingDependencies)</Error> | ||
<Error Id="$(var.msierrDependencyHasDependents)">!(loc.msierrDependencyHasDependents)</Error> | ||
<Error Id="$(var.msierrDependencyMissingDependencies)" Message="!(loc.msierrDependencyMissingDependencies)" /> | ||
<Error Id="$(var.msierrDependencyHasDependents)" Message="!(loc.msierrDependencyHasDependents)" /> | ||
</UI> | ||
</Fragment> | ||
|
||
<Fragment> | ||
<Property Id="DISABLEDEPENDENCYCHECK" Secure="yes" SuppressModularization="yes"/> | ||
<Property Id="DISABLEDEPENDENCYCHECK" Secure="yes" SuppressModularization="yes" /> | ||
</Fragment> | ||
|
||
<Fragment> | ||
<Property Id="IGNOREDEPENDENCIES" Secure="yes" SuppressModularization="yes"/> | ||
<Property Id="IGNOREDEPENDENCIES" Secure="yes" SuppressModularization="yes" /> | ||
</Fragment> | ||
</Wix> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,28 @@ | ||
<?xml version="1.0"?> | ||
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
|
||
|
||
<Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
<?include caDecor.wxi ?> | ||
|
||
<Fragment> | ||
<CustomAction Id="$(var.Prefix)DependencyRequire$(var.Suffix)" BinaryKey="DependencyCA$(var.Suffix)" DllEntry="WixDependencyRequire" Execute="immediate" Return="check" SuppressModularization="yes"/> | ||
<CustomAction Id="$(var.Prefix)DependencyRequire$(var.Suffix)" DllEntry="WixDependencyRequire" Execute="immediate" Return="check" SuppressModularization="yes" BinaryRef="DependencyCA$(var.Suffix)" /> | ||
<InstallExecuteSequence> | ||
<Custom Action="$(var.Prefix)DependencyRequire$(var.Suffix)" Before="WixDependencyCheck$(var.Suffix)" Overridable="yes"><![CDATA[NOT DISABLEDEPENDENCYCHECK]]></Custom> | ||
<Custom Action="$(var.Prefix)DependencyRequire$(var.Suffix)" Before="WixDependencyCheck$(var.Suffix)" Overridable="yes" Condition="NOT DISABLEDEPENDENCYCHECK" /> | ||
</InstallExecuteSequence> | ||
<UIRef Id="WixDependencyErrors"/> | ||
<PropertyRef Id="DISABLEDEPENDENCYCHECK"/> | ||
<UIRef Id="WixDependencyErrors" /> | ||
<PropertyRef Id="DISABLEDEPENDENCYCHECK" /> | ||
</Fragment> | ||
|
||
<Fragment> | ||
<CustomAction Id="$(var.Prefix)DependencyCheck$(var.Suffix)" BinaryKey="DependencyCA$(var.Suffix)" DllEntry="WixDependencyCheck" Execute="immediate" Return="check" SuppressModularization="yes"/> | ||
<CustomAction Id="$(var.Prefix)DependencyCheck$(var.Suffix)" DllEntry="WixDependencyCheck" Execute="immediate" Return="check" SuppressModularization="yes" BinaryRef="DependencyCA$(var.Suffix)" /> | ||
<InstallExecuteSequence> | ||
<Custom Action="$(var.Prefix)DependencyCheck$(var.Suffix)" Before="InstallInitialize" Overridable="yes"><![CDATA[(REMOVE OR MsiPatchRemovalList) AND NOT (UPGRADINGPRODUCTCODE OR IGNOREDEPENDENCIES="ALL")]]></Custom> | ||
<Custom Action="$(var.Prefix)DependencyCheck$(var.Suffix)" Before="InstallInitialize" Overridable="yes" Condition="(REMOVE OR MsiPatchRemovalList) AND NOT (UPGRADINGPRODUCTCODE OR IGNOREDEPENDENCIES="ALL")" /> | ||
</InstallExecuteSequence> | ||
<UIRef Id="WixDependencyErrors"/> | ||
<PropertyRef Id="IGNOREDEPENDENCIES"/> | ||
<UIRef Id="WixDependencyErrors" /> | ||
<PropertyRef Id="IGNOREDEPENDENCIES" /> | ||
</Fragment> | ||
|
||
<Fragment> | ||
<Binary Id="DependencyCA$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))dependencyca.dll"/> | ||
<Binary Id="DependencyCA$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))dependencyca.dll" /> | ||
</Fragment> | ||
</Include> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,39 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
|
||
|
||
<Include xmlns="http://schemas.microsoft.com/wix/2006/wi"> | ||
<Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
<?ifdef Prefix ?> | ||
<?undef Prefix ?> | ||
<?endif ?> | ||
<?endif?> | ||
|
||
<?define Prefix="Wix4" ?> | ||
|
||
<?ifndef platform ?> | ||
<?define platform="x86" ?> | ||
<?endif ?> | ||
<?endif?> | ||
|
||
<?if $(var.platform)="" ?> | ||
<?undef platform ?> | ||
<?define platform="x86" ?> | ||
<?endif ?> | ||
<?endif?> | ||
|
||
<?ifdef Suffix ?> | ||
<?undef Suffix ?> | ||
<?endif ?> | ||
<?endif?> | ||
|
||
<?if $(var.platform)~="x86" ?> | ||
<?define Suffix="_X86" ?> | ||
<?endif ?> | ||
<?endif?> | ||
|
||
<?if $(var.platform)~="x64" ?> | ||
<?define Suffix="_X64" ?> | ||
<?endif ?> | ||
<?endif?> | ||
|
||
<?if $(var.platform)~="arm" ?> | ||
<?define Suffix="_A32" ?> | ||
<?endif ?> | ||
<?endif?> | ||
|
||
<?if $(var.platform)~="arm64" ?> | ||
<?define Suffix="_A64" ?> | ||
<?endif ?> | ||
<?endif?> | ||
</Include> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters