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 was archived by the owner on Dec 14, 2018. It is now read-only.
// For precompiled views, the first time the entry is read, we need to ensure that no changes were made// either to the file associated with this entry, or any _GlobalImport associated with it between the time// the View was precompiled and the time EnsureInitialized was called. For later iterations, we can// rely on expiration triggers ensuring the validity of the entry.varfileInfo=_fileProvider.GetFileInfo(relativePath);if(!fileInfo.Exists){returnnull;}
As can be seen, if the original source file of a precompiled razor view does not exist (or is not found), it ignores it.