-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Attempt to auto-publish vs.redist packages to orchestrated feed #20211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
186187f
17e1053
9efa5bb
6466680
3a5b333
cafdf76
234f97c
d44f1b6
f0b6d30
482d447
5129f7b
02b837d
b028dcc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,6 +66,8 @@ | |
<InstallerAliasBaseFileName>aspnetcore-runtime-latest</InstallerAliasBaseFileName> | ||
<IntermediateInstallerBaseFileName>aspnetcore-runtime-internal-$(PackageVersion)</IntermediateInstallerBaseFileName> | ||
<WindowsHostingBundleInstallerFileName>dotnet-hosting-$(PackageVersion)-win.exe</WindowsHostingBundleInstallerFileName> | ||
<!-- This matches the property set in SharedFramework.wixproj --> | ||
<SharedFrameworkRedistPackageId>VS.Redist.Common.AspNetCore.SharedFramework</SharedFrameworkRedistPackageId> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
|
@@ -174,6 +176,10 @@ | |
<PackageToPublish Include="%(_SymbolsPackageArtifactInfo.ArtifactPath)" Category="symbols" IsSymbolsPackage="true" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<RedistPackageToPublish Include="$(DependencyAssetsDir)$(SharedFrameworkRedistPackageId)*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<_MissingArtifactFile Include="@(FilesToPublish)" Condition="!Exists(%(FilesToPublish.Identity))" /> | ||
<_MissingArtifactFile Include="@(NpmPackageToPublish)" Condition="!Exists(%(NpmPackageToPublish.Identity))" /> | ||
|
@@ -276,6 +282,10 @@ | |
ManifestArtifactData="NonShipping=true" | ||
Condition="'%(PackageToPublish.Category)' != 'ship'" /> | ||
|
||
<PackageToPublishToTransport | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Another option would be to include these packages in |
||
Include="@(RedistPackageToPublish)" | ||
ManifestArtifactData="NonShipping=true" /> | ||
|
||
<FilesToPublishToTransport Include="@(NpmPackageToPublish)" | ||
RelativeBlobPath="$(BlobFileRelativePathBase)%(NpmPackageToPublish.RelativeBlobPath)" | ||
ManifestArtifactData="%(NpmPackageToPublish.ManifestArtifactData)" /> | ||
|
@@ -287,7 +297,6 @@ | |
Condition=" '%(FilesToPublish.IsDuplicateUpload)' != 'true' " /> | ||
</ItemGroup> | ||
|
||
|
||
<PushToBlobFeed ExpectedFeedUrl="$(PublishBlobFeedUrl)" | ||
AccountKey="$(PublishBlobFeedKey)" | ||
ItemsToPush="@(PackageToPublishToTransport)" | ||
|
Uh oh!
There was an error while loading. Please reload this page.