Skip to content

Commit 44749a0

Browse files
authored
Fix LightCommand packages support based on failures in dotnet/runtime. (#5552)
1 parent ecb1bc4 commit 44749a0

File tree

1 file changed

+3
-2
lines changed
  • src/Microsoft.DotNet.Build.Tasks.SharedFramework.Sdk/targets/windows

1 file changed

+3
-2
lines changed

src/Microsoft.DotNet.Build.Tasks.SharedFramework.Sdk/targets/windows/wix.targets

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,11 +334,12 @@
334334
Cultures="en-us"
335335
Out="$(OutInstallerFile)"
336336
WixExtensions="@(WixExtensions)"
337-
WixSrcFiles="@(WixSrcFile -> '$(WixObjDir)%(Filename).wixobj');@(DirectoryToHarvest -> '%(WixObjFile)')"
338-
Condition="'$(EnableCreateLightCommandPackageDrop)' == 'true'">
337+
WixSrcFiles="@(WixSrcFile -> '$(WixObjDir)%(Filename).wixobj');@(DirectoryToHarvest -> '%(WixObjFile)')">
339338
<Output TaskParameter="LightCommandPackageNameOutput" PropertyName="_LightCommandPackageNameOutput" />
340339
</CreateLightCommandPackageDrop>
341340

341+
<MakeDir Directories="$(LightCommandPackagesDir)" />
342+
342343
<ZipDirectory
343344
DestinationFile="$(LightCommandPackagesDir)/LightCommandPackage-$(_LightCommandPackageNameOutput).zip"
344345
Overwrite="true"

0 commit comments

Comments
 (0)