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
{{ message }}
This repository has been archived by the owner on Dec 19, 2018. It is now read-only.
In the case of MVC extensions we generate dynamic _ViewImports.cshtml file equivalents that don't end up having any actual existence on disk. When one of those files has an @using Foo we codegen a line pragma for Foo that does not have a filename. We don't want innaccurate line pragma errors due to lack of file name so we shouldn't render a pragma if a filename is not set on a source location.
The text was updated successfully, but these errors were encountered:
- Prior to this change default imports would get line pragmas generated for them because thye'd have a source location but no file path (they were a dynamic document).
- Re-generated C# files to reflect new line pragma changes.
#1110
- Prior to this change default imports would get line pragmas generated for them because thye'd have a source location but no file path (they were a dynamic document).
- Re-generated C# files to reflect new line pragma changes.
#1110
- Prior to this change default imports would get line pragmas generated for them because thye'd have a source location but no file path (they were a dynamic document).
- Re-generated C# files to reflect new line pragma changes.
#1110
In the case of MVC extensions we generate dynamic
_ViewImports.cshtml
file equivalents that don't end up having any actual existence on disk. When one of those files has an@using Foo
we codegen a line pragma forFoo
that does not have a filename. We don't want innaccurate line pragma errors due to lack of file name so we shouldn't render a pragma if a filename is not set on a source location.The text was updated successfully, but these errors were encountered: