[svn] r7679: vs-plugin/trunk:
Nemerle.Compiler.Utils/Nemerle.Completion2/CompilerConcreteDefinitions/Intel...
VladD2
svnadmin at nemerle.org
Mon May 14 06:33:03 CEST 2007
Log:
Sync with compiler. (Fix hint reporting in MSBuild.)
Author: VladD2
Date: Mon May 14 06:33:01 2007
New Revision: 7679
Modified:
vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CompilerConcreteDefinitions/IntelliSenseModeTyper.n
vs-plugin/trunk/Nemerle.VsIntegration/Project/ (props changed)
vs-plugin/trunk/Nemerle.VsIntegration/Project/NemerleIdeBuildLogger.cs
Modified: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CompilerConcreteDefinitions/IntelliSenseModeTyper.n
==============================================================================
--- vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CompilerConcreteDefinitions/IntelliSenseModeTyper.n (original)
+++ vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Completion2/CompilerConcreteDefinitions/IntelliSenseModeTyper.n Mon May 14 06:33:01 2007
@@ -13,6 +13,7 @@
namespace Nemerle.Completion2.Factories
{
+ //[InheritConstructors]
public class IntelliSenseModeTyper : Typer
{
public this (m : MethodBuilder) { base (m) }
Modified: vs-plugin/trunk/Nemerle.VsIntegration/Project/NemerleIdeBuildLogger.cs
==============================================================================
--- vs-plugin/trunk/Nemerle.VsIntegration/Project/NemerleIdeBuildLogger.cs (original)
+++ vs-plugin/trunk/Nemerle.VsIntegration/Project/NemerleIdeBuildLogger.cs Mon May 14 06:33:01 2007
@@ -297,7 +297,7 @@
/// <param name="buildEvent"></param>
private void BuildFinishedHandler(object sender, BuildFinishedEventArgs buildEvent)
{
- LogEvent(sender, buildEvent);
+ //LogEvent(sender, buildEvent);
if (OutputWindowPane != null && !String.IsNullOrEmpty(buildEvent.Message))
{
StringBuilder msg = new StringBuilder(_currentIndent + buildEvent.Message.Length + 1);
@@ -308,7 +308,7 @@
msg.Append(buildEvent.Succeeded ? " succeeded -- " : " failed -- ");
if (!buildEvent.Succeeded)
- msg.Append(TaskCount(TaskErrorCategory.Error) + "errors, ");
+ msg.Append(TaskCount(TaskErrorCategory.Error) + " errors, ");
msg.AppendLine(TaskCount(TaskErrorCategory.Warning) + " warnings. Build took: "
+ _timer.Elapsed + ".");
@@ -447,8 +447,7 @@
private void LogEvent(object sender, BuildEventArgs buildEvent)
{
// Fill in the Message text
- if (OutputWindowPane != null && !String.IsNullOrEmpty(buildEvent.Message)
- && LogAtImportance(MessageImportance.Low))
+ if (OutputWindowPane != null && !String.IsNullOrEmpty(buildEvent.Message))
{
StringBuilder msg = new StringBuilder(_currentIndent + buildEvent.Message.Length + 1);
if (_currentIndent > 0)
More information about the svn
mailing list