NSwag
NSwag copied to clipboard
NSwag 14.0.3 still issues warning CS8618
Seemingly the same _baseUrl
issue that was reported in #4704
Same here. We use a strict build configuration which has WarningsAsErrors
set to nullable
, so this is a build error for us that we currently have to work around. For now I'm just removing the field manually, since it is apparently never used in the generated code.
Same here Have had to disregard the errors for now with
<PropertyGroup>
<NoWarn>CS8618;CS0169</NoWarn>
</PropertyGroup>