Skip to content

Commit

Permalink
IL2CPU task fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jp2masa committed Jan 11, 2018
1 parent 5378447 commit 74fbef6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion source/Cosmos.Build.Tasks/IL2CPU.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using Microsoft.Build.Framework;
Expand Down Expand Up @@ -51,6 +50,9 @@ public class IL2CPU : ToolTask

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()
Expand Down

0 comments on commit 74fbef6

Please sign in to comment.