mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Dynamic compilation bug fix
Symptom: One the first modification to a source file starts a dynamic compilation. After that, changes are ignored. Fix: The problem was that we need to override the "FileHash" value returned for csproj files to include the hash of all source files. This is so that any changes to any source file will notify ASP.NET that the .csproj file needs to be recompiled using a the corresponding build provider. --HG-- branch : dev
This commit is contained in:
@@ -108,6 +108,10 @@ namespace Orchard.Tests.Environment.Extensions {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public IEnumerable<string> GetFileDependencies(DependencyDescriptor dependency, string virtualPath) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
|
@@ -108,6 +108,10 @@ namespace Orchard.Tests.Environment.Extensions {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public IEnumerable<string> GetFileDependencies(DependencyDescriptor dependency, string virtualPath) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user