You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WARN_PRINT("Failed to execute dotnet command. Error " + String(error_names[err]));
2553
+
} elseif (exitcode != 0) {
2554
+
print_line(pipe);
2555
+
WARN_PRINT("dotnet command exited with code " + itos(exitcode) + ". See output above for more details.");
2556
+
}
2557
+
r_error += vformat(TTR("Unable to determine the C# project's TFM, it may be incompatible. The export template only supports '%s'. Make sure the project targets '%s' or consider using gradle builds instead."), required_tfm, required_tfm) + "\n";
2558
+
} else {
2559
+
String tfm = pipe.strip_edges();
2560
+
if (tfm != required_tfm) {
2561
+
r_error += vformat(TTR("C# project targets '%s' but the export template only supports '%s'. Consider using gradle builds instead."), tfm, required_tfm) + "\n";
0 commit comments