mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-13 03:31:22 +00:00
IL2CPU task fixes.
This commit is contained in:
parent
5378447924
commit
74fbef6cd8
1 changed files with 3 additions and 1 deletions
|
|
@ -1,6 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using Microsoft.Build.Framework;
|
||||
|
|
@ -51,6 +50,9 @@ namespace Cosmos.Build.Tasks
|
|||
|
||||
protected override string ToolName => "IL2CPU.exe";
|
||||
|
||||
protected override MessageImportance StandardErrorLoggingImportance => MessageImportance.High;
|
||||
protected override MessageImportance StandardOutputLoggingImportance => MessageImportance.High;
|
||||
|
||||
protected override string GenerateFullPathToTool() => Path.Combine(CosmosBuildDir, @"IL2CPU\IL2CPU.exe");
|
||||
|
||||
protected override string GenerateCommandLineCommands()
|
||||
|
|
|
|||
Loading…
Reference in a new issue