Progress for dotnet7 support on Linux
This commit is contained in:
@@ -14,5 +14,4 @@ dotnet msbuild /nologo /verbosity:quiet "Source/Tools/Flax.Build/Flax.Build.cspr
|
||||
dotnet msbuild /nologo /verbosity:quiet "Source/Tools/Flax.Build/Flax.Build.csproj" /property:Configuration=Release /target:Build /property:SelfContained=False /property:RuntimeIdentifiers=linux-x64
|
||||
|
||||
# Run the build tool using the provided arguments.
|
||||
#mono --debug --debugger-agent=transport=dt_socket,server=y,address=127.0.0.1:55555 Binaries/Tools/Flax.Build.exe "$@"
|
||||
Binaries/Tools/Flax.Build "$@"
|
||||
|
||||
@@ -178,7 +178,7 @@ namespace Flax.Build
|
||||
}
|
||||
|
||||
sw.Stop();
|
||||
Log.Info("Assembler time: " + sw.Elapsed.TotalSeconds.ToString() + "s");
|
||||
Log.Verbose("Assembler time: " + sw.Elapsed.TotalSeconds.ToString() + "s");
|
||||
return compiledAssembly;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -214,10 +214,9 @@ namespace Flax.Build.Projects.VisualStudioCode
|
||||
}
|
||||
case TargetPlatform.Linux:
|
||||
{
|
||||
json.AddField("command", Path.Combine(Globals.EngineRoot, "Source/Platforms/Editor/Linux/Mono/bin/mono"));
|
||||
json.AddField("command", Path.ChangeExtension(buildToolPath, null));
|
||||
json.BeginArray("args");
|
||||
{
|
||||
json.AddUnnamedField(buildToolPath);
|
||||
json.AddUnnamedField("--build");
|
||||
json.AddUnnamedField("--log");
|
||||
json.AddUnnamedField("--mutex");
|
||||
@@ -242,11 +241,9 @@ namespace Flax.Build.Projects.VisualStudioCode
|
||||
}
|
||||
case TargetPlatform.Mac:
|
||||
{
|
||||
VisualStudioCodeInstance.GetInstance();
|
||||
json.AddField("command", "mono"); // TODO: use bundled mono
|
||||
json.AddField("command", buildToolPath);
|
||||
json.BeginArray("args");
|
||||
{
|
||||
json.AddUnnamedField(buildToolPath);
|
||||
json.AddUnnamedField("--build");
|
||||
json.AddUnnamedField("--log");
|
||||
json.AddUnnamedField("--mutex");
|
||||
|
||||
Reference in New Issue
Block a user