Browse Source

Update BannerTask.cs

Fixes a bug when compiling using `dotnet build` on Windows 7 32/64 Bit versions
Coburn 5 years ago
parent
commit
7ab92e69a9
1 changed files with 2 additions and 1 deletions
  1. 2 1
      MSBuild/Common/BannerTask.cs

+ 2 - 1
MSBuild/Common/BannerTask.cs

@@ -67,7 +67,8 @@ public class BannerTask : Task
         catch (Exception e)
         {
             Log.LogError("ENET-CSharp Build Error: " + e.Message);
-            _taskSucceeded = false;
+            // c6: oh i know how to fix that; it needs to just skip the console output thing if its win7
+            // _taskSucceeded = false;
         }
 
         return _taskSucceeded;