-
Notifications
You must be signed in to change notification settings - Fork 652
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
[Feature] Microsoft.NET.Sdk.BlazorWebAssembly not supported #2890
Comments
Sure, pull requests welcome. |
@asbjornu I think a better idea would be not to add a new sdk to the list every time one is requested, but better to check whether the |
That would indeed be an improvement, @arturcic! 👍🏼 |
🎉 This issue has been resolved in version 5.8.0 🎉 Your GitReleaseManager bot 📦🚀 |
Currently supported project SDKs:
I think there should also be added Microsoft.NET.Sdk.BlazorWebAssembly
In file https://github.com/GitTools/GitVersion/blob/e41cc2b69a7723ce43c5f54885973bd5f738eee5/src/GitVersion.Core/VersionConverters/AssemblyInfo/ProjectFileUpdater.cs
we can extend supportedSdks array:
var supportedSdks = new[] { "Microsoft.NET.Sdk", "Microsoft.NET.Sdk.Web", "Microsoft.NET.Sdk.WindowsDesktop", "Microsoft.NET.Sdk.Razor", "Microsoft.NET.Sdk.Worker", "Microsoft.NET.Sdk.BlazorWebAssembly" };
The text was updated successfully, but these errors were encountered: