Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Microsoft.DotNet.Arcade.Sdk/tools/Publish.proj
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@
Integration with Microsoft.DotNet.Build.Tasks.Installers: Publish packages of the following formats as well.
These are arch-specific Visual Studio insertion packages. As they're Windows-only, they only include architecture in the name:
- VS.Redist.Common.*.$(TargetArchitecture).*.nupkg
- VS.Redist.Common.*.$(TargetArchitecture)-*.*.nupkg
- VS.Redist.Common.*.*_$(TargetArchitecture).*.nupkg
These packages are always non-shipping, so only look there.
-->
<Artifact Include="$(ArtifactsNonShippingPackagesDir)**/VS.Redist.Common.*.$(TargetArchitecture).*.nupkg" IsShipping="false" Kind="Package" />
<Artifact Include="$(ArtifactsNonShippingPackagesDir)**/VS.Redist.Common.*.$(TargetArchitecture)-*.*.nupkg" IsShipping="false" Kind="Package" />
<Artifact Include="$(ArtifactsNonShippingPackagesDir)**/VS.Redist.Common.*.*_$(TargetArchitecture).*.nupkg" IsShipping="false" Kind="Package" />

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would we ever have packages with the old naming model, i.e. does it make sense to keep both patterns?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No we won't. I misread the pattern when I added this and got it wrong.


<!--
In the VMR, don't publish packages that didn't match the above conditions externally.
Expand Down
Loading