Skip to content

Commit acc5a6e

Browse files
committed
Upload unsigned bundle
1 parent 67761f3 commit acc5a6e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.azure/pipelines/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,8 @@ extends:
277277
path: artifacts/bin/ANCMv2
278278
- name: Windows_ANCMIISExpress_Msi
279279
path: artifacts/bin/AncmIISExpressV2
280+
- name: Windows_Unsigned_Bundle
281+
path: artifacts/DontSignMe/
280282

281283
# Build MacOS arm64
282284
- template: .azure/pipelines/jobs/default-build.yml@self

src/Installers/Windows/WindowsHostingBundle/WindowsHostingBundle.wixproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393

9494
<PropertyGroup>
9595
<PackageFileName>dotnet-hosting-$(PackageVersion)-win$(TargetExt)</PackageFileName>
96+
<DupePackageFileName>dotnet-hosting-unsigned-$(PackageVersion)-win$(TargetExt)</DupePackageFileName>
9697

9798
<BundleNameShort>Microsoft .NET $(PackageBrandingVersion)</BundleNameShort>
9899
<SharedFxPackageVersion>$(PackageVersion)</SharedFxPackageVersion>
@@ -167,4 +168,9 @@
167168
<DefineConstants>$(DefineConstants);SharedFxRedistInstallerarm64=$(SharedFxRedistInstallerarm64)</DefineConstants>
168169
</PropertyGroup>
169170
</Target>
171+
172+
<Target Name="CopyDupeToArtifactsDirectory"
173+
BeforeTargets="Build">
174+
<Copy SourceFiles="$(TargetPath)" DestinationFiles="$(ArtifactsDir)DontSignMe/$(DupePackageFileName)" />
175+
</Target>
170176
</Project>

0 commit comments

Comments
 (0)