mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Refactoring a couple of method related to dynamic compilation
Abstract away WebForms syntax knowledge from extension loader implementations. Rename the corresponding methods to be more semantically correct. --HG-- branch : 1.x
This commit is contained in:
@@ -183,15 +183,11 @@ Features:
|
||||
public void Monitor(ExtensionDescriptor extension, Action<IVolatileToken> monitor) {
|
||||
}
|
||||
|
||||
public string GetWebFormAssemblyDirective(DependencyDescriptor dependency) {
|
||||
public IEnumerable<ExtensionCompilationReference> GetCompilationReferences(DependencyDescriptor dependency) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public IEnumerable<string> GetWebFormVirtualDependencies(DependencyDescriptor dependency) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public IEnumerable<string> GetDynamicModuleDependencies(DependencyDescriptor dependency, string virtualPath) {
|
||||
public IEnumerable<string> GetVirtualPathDependencies(DependencyDescriptor dependency) {
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user