File tree 3 files changed +10
-7
lines changed
3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -1572,7 +1572,7 @@ stages:
1572
1572
platform : $(platform)
1573
1573
configuration : Release
1574
1574
maximumCpuCount : true
1575
- restoreNugetPackages : false
1575
+ restoreNugetPackages : true
1576
1576
createLogFile : true
1577
1577
msbuildArguments :
1578
1578
-p:RunWixToolsOutOfProc=true
@@ -1639,6 +1639,7 @@ stages:
1639
1639
platform : $(platform)
1640
1640
configuration : Release
1641
1641
maximumCpuCount : true
1642
+ restoreNugetPackages : true
1642
1643
msbuildArguments :
1643
1644
-p:RunWixToolsOutOfProc=true
1644
1645
-p:ProductArchitecture=$(arch)
@@ -1655,6 +1656,7 @@ stages:
1655
1656
platform : $(platform)
1656
1657
configuration : Release
1657
1658
maximumCpuCount : true
1659
+ restoreNugetPackages : true
1658
1660
msbuildArguments :
1659
1661
-p:RunWixToolsOutOfProc=true
1660
1662
-p:ProductArchitecture=$(arch)
@@ -1714,7 +1716,7 @@ stages:
1714
1716
platform : $(platform)
1715
1717
configuration : Release
1716
1718
maximumCpuCount : true
1717
- restoreNugetPackages : false
1719
+ restoreNugetPackages : true
1718
1720
createLogFile : true
1719
1721
msbuildArguments :
1720
1722
-p:RunWixToolsOutOfProc=true
@@ -1786,7 +1788,7 @@ stages:
1786
1788
platform : $(platform)
1787
1789
configuration : Release
1788
1790
maximumCpuCount : true
1789
- restoreNugetPackages : false
1791
+ restoreNugetPackages : true
1790
1792
createLogFile : true
1791
1793
msbuildArguments :
1792
1794
-p:RunWixToolsOutOfProc=true
Original file line number Diff line number Diff line change @@ -1633,7 +1633,7 @@ jobs:
1633
1633
1634
1634
- name : Package
1635
1635
run : |
1636
- msbuild -nologo `
1636
+ msbuild -nologo -restore `
1637
1637
-p:Configuration=Release `
1638
1638
-p:RunWixToolsOutOfProc=true `
1639
1639
-p:OutputPath=${{ github.workspace }}\BinaryCache\toolchain\ `
@@ -1700,7 +1700,7 @@ jobs:
1700
1700
1701
1701
- name : Package Runtime
1702
1702
run : |
1703
- msbuild -nologo `
1703
+ msbuild -nologo -restore `
1704
1704
-p:Configuration=Release `
1705
1705
-p:RunWixToolsOutOfProc=true `
1706
1706
-p:OutputPath=${{ github.workspace }}\BinaryCache\runtime\ `
@@ -1757,7 +1757,7 @@ jobs:
1757
1757
1758
1758
- name : Package
1759
1759
run : |
1760
- msbuild -nologo `
1760
+ msbuild -nologo -restore `
1761
1761
-p:Configuration=Release `
1762
1762
-p:RunWixToolsOutOfProc=true `
1763
1763
-p:OutputPath=${{ github.workspace }}\BinaryCache\devtools\ `
@@ -1821,7 +1821,7 @@ jobs:
1821
1821
1822
1822
- name : Package
1823
1823
run : |
1824
- msbuild -nologo `
1824
+ msbuild -nologo -restore `
1825
1825
-p:Configuration=Release `
1826
1826
-p:RunWixToolsOutOfProc=true `
1827
1827
-p:OutputPath=${{ github.workspace }}\BinaryCache\installer\ `
Original file line number Diff line number Diff line change @@ -377,6 +377,7 @@ function Build-WiXProject()
377
377
378
378
$MSBuildArgs = @ (" $SourceCache \swift-installer-scripts\platforms\Windows\$FileName " )
379
379
$MSBuildArgs += " -noLogo"
380
+ $MSBuildArgs += " -restore"
380
381
foreach ($Property in $Properties.GetEnumerator ()) {
381
382
$MSBuildArgs += " -p:$ ( $Property.Key ) =$ ( $Property.Value ) "
382
383
}
You can’t perform that action at this time.
0 commit comments