C
C#23h ago
Warchortle

.Net Framework project complains about nullable not being supported in C# 7.3

I have a very old project my team is now working on and for some reason when I try to build it in VS 2022 I get the following error
Invalid 'nullable' value: 'Enable' for C# 7.3. Please use language version '8.0' or greater.
Invalid 'nullable' value: 'Enable' for C# 7.3. Please use language version '8.0' or greater.
There are two projects in here that use .net 6 and 7. Most projects are using net4.8 I checked the csproj files they don't have <Nullable>enable</Nullable> The wierd thing is this is only happening on my machine. Any ideas on why VS thinks nullable is enabled on projects using net48. There is no Directory.Build.props file either.
6 Replies
reflectronic
reflectronic23h ago
does it happen when you use dotnet build?
Warchortle
WarchortleOP23h ago
I don't think so. I can build it using our build.cake setup. Looking through it I don't see how its running the build though just ran dotnet build it failed with the same errirs
reflectronic
reflectronic23h ago
to debug issues like this i would start with https://msbuildlog.com/
Warchortle
WarchortleOP23h ago
I see the error in the logviewer but not sure what to do with it
reflectronic
reflectronic19h ago
what do you see if you search for "LangVersion"
Angius
Angius16h ago
Do you maybe have a #nullable enable pragma anywhere?

Did you find this page helpful?