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.2] Allow Dashboard application to roll-forward #6417

Merged
merged 1 commit into from
Oct 21, 2024
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
6 changes: 6 additions & 0 deletions src/Aspire.Dashboard/Aspire.Dashboard.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
CS8002: Referenced assembly does not have a strong name
-->
<NoWarn>$(NoWarn);CS1591;CS8002</NoWarn>

<!-- This Application is a framework-dependent application that targets .NET 8.0. This means that the
application is not able to run if the place where it is deployed does not have the .NET 8.0 runtime installed.
Given we want to be able to support people running on environments where they only have the 9.0 SDK/runtime installed,
we allow roll-forward to the next major in order to support these customers.-->
<RollForward>Major</RollForward>
</PropertyGroup>

<PropertyGroup>
Expand Down
Loading