Skip to content

Commit 20cac62

Browse files
Compile imported file changes. Fixed #67
1 parent 67b549e commit 20cac62

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/WebCompilerVsix/FileListeners/SourceFileCreationListener.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,7 @@ private void DocumentSaved(object sender, TextDocumentFileActionEventArgs e)
6363
ErrorList.CleanErrors(e.FilePath);
6464

6565
if (File.Exists(configFile))
66-
{
67-
var configs = ConfigFileProcessor.IsFileConfigured(configFile, e.FilePath);
68-
69-
if (configs != null && configs.Any())
70-
CompilerService.SourceFileChanged(configFile, e.FilePath);
71-
}
66+
CompilerService.SourceFileChanged(configFile, e.FilePath);
7267
}
7368
}
7469
}

0 commit comments

Comments
 (0)