Skip to content
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

[release/8.0] Add SuppressFinalPackageVersion to libraries we don't plan to ship stable yet #3707

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions src/Aspire.Hosting.AWS/Aspire.Hosting.AWS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<PropertyGroup>
<TargetFramework>$(NetCurrent)</TargetFramework>
<IsPackable>true</IsPackable>
<!-- This library needs more bake time until it can ship stable. -->
<SuppressFinalPackageVersion>true</SuppressFinalPackageVersion>
<PackageTags>aspire hosting aws</PackageTags>
<Description>Add support for provisioning AWS application resources and configuring the AWS SDK for .NET.</Description>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<PropertyGroup>
<TargetFramework>$(NetCurrent)</TargetFramework>
<IsPackable>true</IsPackable>
<!-- This library can't ship stable until Azure.AI.OpenAI ships stable. -->
<SuppressFinalPackageVersion>true</SuppressFinalPackageVersion>
<PackageTags>$(ComponentAzurePackageTags) ai openai</PackageTags>
<Description>A client for Azure OpenAI that integrates with Aspire, including logging and telemetry.</Description>
<PackageIconFullPath>$(SharedDir)AzureOpenAI_256x.png</PackageIconFullPath>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<PropertyGroup>
<TargetFramework>$(NetCurrent)</TargetFramework>
<IsPackable>true</IsPackable>
<!-- This library needs more bake time until it can ship stable. -->
<SuppressFinalPackageVersion>true</SuppressFinalPackageVersion>
<PackageTags>$(ComponentAzurePackageTags) eventhubs amqp</PackageTags>
<Description>A client for Azure Event Hubs that integrates with Aspire, including logging and telemetry.</Description>
<PackageIconFullPath>$(SharedDir)AzureEventHubs_256x.png</PackageIconFullPath>
Expand Down