Пример #1
0
 public void RemoveDynamicFile(string fullPath)
 {
     UnderlyingContext.RemoveDynamicFile(fullPath);
 }
Пример #2
0
 public void RemoveMetadataReference(string referencePath)
 {
     UnderlyingContext.RemoveMetadataReference(referencePath);
 }
Пример #3
0
 public void RemoveAdditionalFile(string filePath)
 {
     UnderlyingContext.RemoveAdditionalFile(filePath);
 }
Пример #4
0
 public void RemoveAnalyzerReference(string referencePath)
 {
     UnderlyingContext.RemoveAnalyzerReference(referencePath);
 }
Пример #5
0
 public void SetRuleSetFile(string filePath)
 {
     UnderlyingContext.SetRuleSetFile(filePath);
 }
Пример #6
0
 public void AddAnalyzerReference(string referencePath)
 {
     UnderlyingContext.AddAnalyzerReference(referencePath);
 }
 public override SynchronizationContext CreateCopy()
 => new DenyExecutionSynchronizationContext(UnderlyingContext.CreateCopy(), MainThread, _failedTransfer);
Пример #8
0
 public void SetOptions(string commandLineForOptions)
 {
     UnderlyingContext.SetOptions(commandLineForOptions);
 }
Пример #9
0
 public void AddSourceFile(string filePath, bool isInCurrentContext = true, IEnumerable <string> folderNames = null, SourceCodeKind sourceCodeKind = SourceCodeKind.Regular)
 {
     UnderlyingContext.AddSourceFile(filePath, isInCurrentContext, folderNames, sourceCodeKind);
 }
Пример #10
0
        public void RegisterRefactoring(CodeAction codeAction)
        {
            Debug.WriteLine($"REGISTERING REFACTORING \"{codeAction.Title}\"");

            UnderlyingContext.RegisterRefactoring(codeAction);
        }
Пример #11
0
 public void AddProjectReference(IWorkspaceProjectContext project, MetadataReferenceProperties properties)
 {
     UnderlyingContext.AddProjectReference(project, properties);
 }
Пример #12
0
 public void AddMetadataReference(string referencePath, MetadataReferenceProperties properties)
 {
     UnderlyingContext.AddMetadataReference(referencePath, properties);
 }
Пример #13
0
 public void AddDynamicFile(string filePath, IEnumerable <string> folderNames = null)
 {
     UnderlyingContext.AddDynamicFile(filePath, folderNames);
 }
Пример #14
0
 public void RemoveProjectReference(IWorkspaceProjectContext project)
 {
     UnderlyingContext.RemoveProjectReference(project);
 }
Пример #15
0
 public void RegisterRefactoring(CodeAction codeAction)
 {
     UnderlyingContext.RegisterRefactoring(codeAction);
 }
Пример #16
0
 public void RemoveSourceFile(string filePath)
 {
     UnderlyingContext.RemoveSourceFile(filePath);
 }
Пример #17
0
 public void Dispose()
 {
     UnderlyingContext.Dispose();
 }
Пример #18
0
 public void SetProperty(string name, string value)
 {
     UnderlyingContext.SetProperty(name, value);
 }
Пример #19
0
 public void EndBatch()
 {
     UnderlyingContext.EndBatch();
 }
Пример #20
0
 public void StartBatch()
 {
     UnderlyingContext.StartBatch();
 }
Пример #21
0
 public void AddAdditionalFile(string filePath, bool isInCurrentContext = true)
 {
     UnderlyingContext.AddAdditionalFile(filePath, isInCurrentContext);
 }