We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
NuGet SDK
This request affects the project Nuget.Frameworks.
Its class FrameworkConstants.CommonFrameworks is missing a value for the tfm "net9.0".
The line to add would be:
public static readonly NuGetFramework Net90 = new NuGetFramework(FrameworkIdentifiers.NetCoreApp, Version9);
The constant Version9 has to be added to the class FrameworkConstants for this to work:
Version9
public static readonly Version Version9 = new Version(9, 0, 0, 0);
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
NuGet Product(s) Involved
NuGet SDK
The Elevator Pitch
This request affects the project Nuget.Frameworks.
Its class FrameworkConstants.CommonFrameworks is missing a value for the tfm "net9.0".
The line to add would be:
The constant
Version9
has to be added to the class FrameworkConstants for this to work:Additional Context and Details
No response
The text was updated successfully, but these errors were encountered: