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
We have a GitHub Action that runs unit tests: https://github.com/AzureAD/microsoft-identity-web/actions/workflows/dotnetcore.yml
Currently the runner doesn't have the latest VS and MSBuild versions needed (17.12) to build .NET 9.
As a workaround we removed --no-restore --no-build when running .NET 9 tests only, meaning we perform a build. https://github.com/AzureAD/microsoft-identity-web/actions/runs/11846915780/workflow#L52
--no-restore --no-build
Once the runner is updated, we need to add those flags back in to speed up the tests.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We have a GitHub Action that runs unit tests: https://github.com/AzureAD/microsoft-identity-web/actions/workflows/dotnetcore.yml
Currently the runner doesn't have the latest VS and MSBuild versions needed (17.12) to build .NET 9.
As a workaround we removed
--no-restore --no-build
when running .NET 9 tests only, meaning we perform a build. https://github.com/AzureAD/microsoft-identity-web/actions/runs/11846915780/workflow#L52Once the runner is updated, we need to add those flags back in to speed up the tests.
The text was updated successfully, but these errors were encountered: