File tree Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 54
54
- test/packaging/windows/*
55
55
- tools/ci.psm1
56
56
- tools/packaging/*
57
+ - tools/wix/*
57
58
58
59
variables :
59
60
- name : GIT_CONFIG_PARAMETERS
Original file line number Diff line number Diff line change 3
3
4
4
<ItemGroup >
5
5
<!-- Keep version in sync with wix.psm1 line 18 -->
6
- <PackageReference Include =" WiX " Version =" 3.14.1" />
6
+ <PackageReference Include =" Microsoft.Signed.Wix " Version =" 3.14.1-8722.20240403 .1" />
7
7
</ItemGroup >
8
8
9
9
</Project >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <configuration >
3
+ <packageSources >
4
+ <clear />
5
+ <add key =" dotnet-eng" value =" https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
6
+ </packageSources >
7
+ <disabledPackageSources >
8
+ <clear />
9
+ </disabledPackageSources >
10
+ </configuration >
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ function Install-Wix
14
14
Remove-Item $targetRoot - Recurse - Force
15
15
}
16
16
$binPath = Join-Path - Path $targetRoot - ChildPath ' bin'
17
- Register-PSRepository - Name NuGetGallery - SourceLocation https:// api.nuget.org / v3/ index.json
17
+ Register-PSRepository - Name ' dotnet-eng ' - SourceLocation " https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/ v3/index.json"
18
18
# keep version in sync with Microsoft.PowerShell.Packaging.csproj
19
- Save-Module - name wix - RequiredVersion 3.14 .1 - path " $binPath /"
19
+ Save-Module - name Microsoft.Signed.Wix - RequiredVersion ' 3.14.1-8722.20240403.1 ' - path " $binPath /"
20
20
$docExpandPath = Join-Path - Path $binPath - ChildPath ' doc'
21
21
$sdkExpandPath = Join-Path - Path $binPath - ChildPath ' sdk'
22
22
$docTargetPath = Join-Path - Path $targetRoot - ChildPath ' doc'
You can’t perform that action at this time.
0 commit comments