Expand template coverage
This commit is contained in:
parent
027567b88b
commit
c3a19ed0e3
1 changed files with 3 additions and 3 deletions
|
@ -415,7 +415,7 @@
|
||||||
|
|
||||||
<Target Name="GenerateTemplatesNupkgs"
|
<Target Name="GenerateTemplatesNupkgs"
|
||||||
DependsOnTargets="GenerateLayout;MsiTargetsSetupInputOutputs;GenerateTemplatesMsis;SignTemplatesMsis;SetupTemplatesNupkgs"
|
DependsOnTargets="GenerateLayout;MsiTargetsSetupInputOutputs;GenerateTemplatesMsis;SignTemplatesMsis;SetupTemplatesNupkgs"
|
||||||
Condition="$(ProductMonikerRid.StartsWith('win')) And !$(Architecture.StartsWith('arm'))"
|
Condition="$(ProductMonikerRid.StartsWith('win')) And '$(Architecture)' != 'arm' "
|
||||||
Inputs="@(TemplatesNupkgComponent->'%(MSIInstallerFile)');
|
Inputs="@(TemplatesNupkgComponent->'%(MSIInstallerFile)');
|
||||||
$(TemplatesInstallerNuspecFile);
|
$(TemplatesInstallerNuspecFile);
|
||||||
$(GenerateNupkgPowershellScript)"
|
$(GenerateNupkgPowershellScript)"
|
||||||
|
@ -480,7 +480,7 @@
|
||||||
|
|
||||||
<Target Name="GenerateSdkMSBuildExtensionsNupkg"
|
<Target Name="GenerateSdkMSBuildExtensionsNupkg"
|
||||||
DependsOnTargets="GenerateLayout;GenerateMSBuildExtensions;MsiTargetsSetupInputOutputs"
|
DependsOnTargets="GenerateLayout;GenerateMSBuildExtensions;MsiTargetsSetupInputOutputs"
|
||||||
Condition=" '$(OS)' == 'Windows_NT' And '$(Architecture)' == 'x64' "
|
Condition=" '$(OS)' == 'Windows_NT' And ('$(Architecture)' == 'x64' Or '$(Architecture)' == 'arm64') "
|
||||||
Inputs="$(MSBuildExtensionsLayoutDirectory)/**/*;
|
Inputs="$(MSBuildExtensionsLayoutDirectory)/**/*;
|
||||||
$(SdkMSBuildExtensionsNuspecFile);
|
$(SdkMSBuildExtensionsNuspecFile);
|
||||||
$(GenerateNupkgPowershellScript)"
|
$(GenerateNupkgPowershellScript)"
|
||||||
|
@ -500,7 +500,7 @@
|
||||||
|
|
||||||
<Target Name="GenerateVSTemplateLocatorNupkg"
|
<Target Name="GenerateVSTemplateLocatorNupkg"
|
||||||
DependsOnTargets="GenerateLayout;MsiTargetsSetupInputOutputs"
|
DependsOnTargets="GenerateLayout;MsiTargetsSetupInputOutputs"
|
||||||
Condition=" '$(OS)' == 'Windows_NT' And '$(Architecture)' == 'x64' "
|
Condition=" '$(OS)' == 'Windows_NT' And ('$(Architecture)' == 'x64' Or '$(Architecture)' == 'arm64') "
|
||||||
Inputs="$(MSBuildExtensionsLayoutDirectory)/**/*;
|
Inputs="$(MSBuildExtensionsLayoutDirectory)/**/*;
|
||||||
$(VSTemplateLocatorNuspecFile);
|
$(VSTemplateLocatorNuspecFile);
|
||||||
$(GenerateNupkgPowershellScript)"
|
$(GenerateNupkgPowershellScript)"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue