-
-
Notifications
You must be signed in to change notification settings - Fork 2
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
238 compiler warnings when building Solid #20
Comments
I don't think it's building. You probably didn't make any changes, so it didn't need to rebuild. |
I see that is what's happening.. I was able to rebuild and see the warnings now. |
It looks like you can declare things with a nullable type by adding '?' at the end of their type. eg Or if we don't want to see all those question marks, we could use |
I think that what we need to do in many cases is to add the question mark where it's obvious that the value is initialized to null. See https://learn.microsoft.com/en-us/dotnet/csharp/nullable-references |
There are currently 238 compiler warnings, mostly about nullable values I think, when building with a recent .Net SDK. We should fix up our code per the recommendations in the warnings.
The text was updated successfully, but these errors were encountered: