We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In PageSystem.cs public static DateTime SetCacheHeaders(HttpContextBase context) { string[] allFiles = Directory.GetFiles(context.Server.MapPath("~/"), ".", SearchOption.AllDirectories); DateTime lastModified = allFiles.Max(f => File.GetLastWriteTime(f));
The text was updated successfully, but these errors were encountered:
The cause of this is the node_modules folder. If you hide that folder in windows explorer, visual studio will ignore it and this issue will go away.
Sorry, something went wrong.
thank you !
No branches or pull requests
In PageSystem.cs
public static DateTime SetCacheHeaders(HttpContextBase context)
{
string[] allFiles = Directory.GetFiles(context.Server.MapPath("~/"), ".", SearchOption.AllDirectories);
DateTime lastModified = allFiles.Max(f => File.GetLastWriteTime(f));
The text was updated successfully, but these errors were encountered: