C#: Generate source files from .cshtml files in standalone

This commit is contained in:
Tamas Vajk
2023-08-14 16:02:32 +02:00
parent ba0f07b66c
commit d391246f27
10 changed files with 356 additions and 84 deletions

View File

@@ -108,5 +108,11 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
internal void NoTopLevelNugetConfig() =>
LogInfo("Could not find a top-level nuget.config file.");
internal void RazorSourceGeneratorMissing(string fullPath) =>
LogInfo($"Razor source generator folder {fullPath} does not exist.");
internal void CscMissing(string cscPath) =>
LogInfo($"Csc.exe not found at {cscPath}.");
}
}