| 37 | } |
| 38 | |
| 39 | void FCodeAnalysis::Compile() |
| 40 | { |
| 41 | static auto CompileTool = FUnrealCSharpFunctionLibrary::GetDotNet(); |
| 42 | |
| 43 | const auto CompileParam = FString::Printf(TEXT( |
| 44 | "build \"%s\" --nologo -c Debug" |
| 45 | ), |
| 46 | *FUnrealCSharpFunctionLibrary::GetCodeAnalysisProjectPath() |
| 47 | ); |
| 48 | |
| 49 | FUnrealCSharpFunctionLibrary::SyncProcess(CompileTool, CompileParam, [](const int32, const FString&) |
| 50 | { |
| 51 | }); |
| 52 | } |
| 53 | |
| 54 | void FCodeAnalysis::Analysis() |
| 55 | { |
nothing calls this directly
no outgoing calls
no test coverage detected