Add alternative search locations for msbuild
This commit is contained in:
parent
d5caf71c3f
commit
b4d758e067
2 changed files with 54 additions and 8 deletions
|
|
@ -19,7 +19,15 @@ namespace GodotSharpTools.Build
|
|||
|
||||
private static string MSBuildPath
|
||||
{
|
||||
get { return godot_icall_BuildInstance_get_MSBuildPath(); }
|
||||
get
|
||||
{
|
||||
string ret = godot_icall_BuildInstance_get_MSBuildPath();
|
||||
|
||||
if (ret == null)
|
||||
throw new FileNotFoundException("Cannot find the MSBuild executable.");
|
||||
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
private string solution;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue