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
see this .NET8-preview PR as an example of what to do
https://github.com/AzureAD/microsoft-identity-web/pull/2318/files
Make sure the .NET9-preview is added to the GitHub action and the right builds. We should also have a build variable for .NET 9
start with 9.0.100-preview.2.24157.14 https://dotnet.microsoft.com/en-us/download/dotnet/9.0 and we'll update it every month. Using a * does not work well in this case.
*
The text was updated successfully, but these errors were encountered:
An even better condition to add the new target framework is to modify <TargetFrameworks> conditionally (adding the line in green below)
<TargetFrameworks>
<TargetFrameworks>net6.0; net7.0; net8.0; net462; net472; netstandard2.0</TargetFrameworks> + <TargetFrameworks Condition="'$(TargetNet9)'== 'True'">$(TargetFrameworks); net9.0</TargetFrameworks>
Sorry, something went wrong.
FuPingFranco
Successfully merging a pull request may close this issue.
see this .NET8-preview PR as an example of what to do
https://github.com/AzureAD/microsoft-identity-web/pull/2318/files
Make sure the .NET9-preview is added to the GitHub action and the right builds. We should also have a build variable for .NET 9
start with 9.0.100-preview.2.24157.14
https://dotnet.microsoft.com/en-us/download/dotnet/9.0 and we'll update it every month. Using a
*
does not work well in this case.The text was updated successfully, but these errors were encountered: