You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just updated to the latest .NET SDK, version 9.0.200, and I'm getting these new warnings from code generated by DapperAOT.
warning CS9270: 'InterceptsLocationAttribute(string, int, int)' is not supported. Move to 'InterceptableLocation'-based generation of these attributes instead. (dotnet/roslyn#72133)
It seems that the attribute constructor that takes a line number and a character position is deprecated in favor of a new API that's described in the issue linked in the warning above.
To Reproduce
Use DapperAOT version 1.0.45 with .NET SDK version 9.0.200.
Expected behavior
Preferably no warnings.
Additional context
I believe the existing code is still working but will break eventually so this should be fixed.
The text was updated successfully, but these errors were encountered:
Describe the bug
I just updated to the latest .NET SDK, version 9.0.200, and I'm getting these new warnings from code generated by DapperAOT.
It seems that the attribute constructor that takes a line number and a character position is deprecated in favor of a new API that's described in the issue linked in the warning above.
To Reproduce
Use DapperAOT version 1.0.45 with .NET SDK version 9.0.200.
Expected behavior
Preferably no warnings.
Additional context
I believe the existing code is still working but will break eventually so this should be fixed.
The text was updated successfully, but these errors were encountered: