Skip to content

Commit df935f4

Browse files
authored
Merge pull request #5032 from joperezr/MergeFromRelease
Merge branch release/8.1 into main
2 parents 0e56769 + 52ac331 commit df935f4

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/Aspire.Hosting.Azure.WebPubSub/Aspire.Hosting.Azure.WebPubSub.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<PackageTags>aspire hosting azure webpubsub pubsub websocket</PackageTags>
77
<Description>Azure WebPubSub resource types for .NET Aspire.</Description>
88
<PackageIconFullPath>$(SharedDir)AzureWebPubSub_256x.png</PackageIconFullPath>
9+
<!-- This library can't ship stable until Azure.Provisioning.WebPubSub ships stable. -->
10+
<SuppressFinalPackageVersion>true</SuppressFinalPackageVersion>
911
<!-- Disable package validation as this package hasn't shipped yet. -->
1012
<EnablePackageValidation>false</EnablePackageValidation>
1113
</PropertyGroup>

src/Directory.Build.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- Used by Aspire.Workload.Testing.targets -->
66
<Target Name="GetPackageName" Returns="@(PackageName)">
77
<ItemGroup>
8-
<PackageName Include="$(MSBuildProjectName)" Condition="'$(IsPackable)' == 'true'" />
8+
<PackageName Include="$(MSBuildProjectName)" Condition="'$(IsPackable)' == 'true'" WithPackageVersion="$(PackageVersion)" />
99
</ItemGroup>
1010
</Target>
1111
</Project>

tests/Shared/Aspire.Workload.Testing.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105

106106
<ItemGroup>
107107
<AllPackages Include="$(ArtifactsShippingPackagesDir)*.nupkg" />
108-
<ExpectedPackagePaths Include="$(ArtifactsShippingPackagesDir)%(ExpectedPackageNames.Identity).$(PackageVersion).nupkg" />
108+
<ExpectedPackagePaths Include="$(ArtifactsShippingPackagesDir)%(ExpectedPackageNames.Identity).%(ExpectedPackageNames.WithPackageVersion).nupkg" />
109109
<MissingPackages Include="@(ExpectedPackagePaths)" Condition="!Exists(%(ExpectedPackagePaths.Identity))" />
110110

111111
<UnexpectedPackages Include="@(AllPackages)" Exclude="@(ExpectedPackagePaths)" />

0 commit comments

Comments
 (0)