Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added WrapLineLayoutRendererWrapper #1400

Merged
merged 7 commits into from
May 4, 2016
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 95 additions & 0 deletions src/NLog/LayoutRenderers/Wrappers/WrapLineLayoutRendererWrapper.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
//
// Copyright (c) 2004-2016 Jaroslaw Kowalski <jaak@jkowalski.net>, Kim Christensen, Julian Verdurmen
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * Neither the name of Jaroslaw Kowalski nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
// THE POSSIBILITY OF SUCH DAMAGE.
//

namespace NLog.LayoutRenderers.Wrappers
{
using System;
using System.ComponentModel;
using System.Text;

using NLog.Config;

/// <summary>
/// Replaces newline characters from the result of another layout renderer with spaces.
/// </summary>
[LayoutRenderer("wrapline")]
[AmbientProperty("WrapLine")]
[ThreadAgnostic]
public sealed class WrapLineLayoutRendererWrapper : WrapperLayoutRendererBase
{
/// <summary>
/// Initializes a new instance of the <see cref="WrapLineLayoutRendererWrapper" /> class.
/// </summary>
public WrapLineLayoutRendererWrapper()
{
WrapLine = 80;
}

/// <summary>
/// Gets or sets the line length for wrapping.
/// </summary>
/// <remarks>
/// Only positive values are allowed
/// </remarks>
/// <docgen category='Transformation Options' order='10' />
[DefaultValue(80)]
public int WrapLine { get; set; }

/// <summary>
/// Post-processes the rendered message.
/// </summary>
/// <param name="text">The text to be post-processed.</param>
/// <returns>Post-processed text.</returns>
protected override string Transform(string text)
{
var chunkLength = WrapLine;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we have to check if WrapLine > 0

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done, threw ArgumentException

var textLength = text.Length;

var sb = new StringBuilder(textLength);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

building a stringbuilder isn't always needed

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

indeed. replaced by a string


// based on : http://stackoverflow.com/questions/36788754/how-can-i-limit-the-length-of-a-line-in-nlog/36789394
// and : http://stackoverflow.com/questions/1450774/splitting-a-string-into-chunks-of-a-certain-size/8944374#8944374
for (int pos = 0; pos < text.Length; pos += chunkLength)
{
if (chunkLength + pos > textLength)
chunkLength = textLength - pos;

sb.Append(text.Substring(pos, chunkLength) + Environment.NewLine);
}

sb.Remove(sb.Length - Environment.NewLine.Length, Environment.NewLine.Length);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this could be done better. We already checking thing is the for loop, so don't add Environment.NewLine and then remove it later.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done.


return sb.ToString();
}
}
}
1 change: 1 addition & 0 deletions src/NLog/NLog.Xamarin.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@
<Compile Include="LayoutRenderers\Wrappers\UrlEncodeLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapperLayoutRendererBase.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeLayoutRendererWrapper.cs" />
<Compile Include="Layouts\CsvColumn.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.Xamarin.iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@
<Compile Include="LayoutRenderers\Wrappers\UrlEncodeLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapperLayoutRendererBase.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeLayoutRendererWrapper.cs" />
<Compile Include="Layouts\CsvColumn.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.doc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@
<Compile Include="LayoutRenderers\Wrappers\UrlEncodeLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapperLayoutRendererBase.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeLayoutRendererWrapper.cs" />
<Compile Include="Layouts\CsvColumn.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.mono.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@
<Compile Include="LayoutRenderers\Wrappers\UrlEncodeLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapperLayoutRendererBase.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeLayoutRendererWrapper.cs" />
<Compile Include="Layouts\CsvColumn.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.netfx35.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@
<Compile Include="LayoutRenderers\Wrappers\UrlEncodeLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapperLayoutRendererBase.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeLayoutRendererWrapper.cs" />
<Compile Include="Layouts\CsvColumn.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.netfx40.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@
<Compile Include="LayoutRenderers\Wrappers\UrlEncodeLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapperLayoutRendererBase.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeLayoutRendererWrapper.cs" />
<Compile Include="Layouts\CsvColumn.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.netfx45.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@
<Compile Include="LayoutRenderers\Wrappers\UrlEncodeLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapperLayoutRendererBase.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeLayoutRendererWrapper.cs" />
<Compile Include="Layouts\CsvColumn.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.sl4.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,7 @@
<Compile Include="LayoutRenderers\Wrappers\UrlEncodeLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapperLayoutRendererBase.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeLayoutRendererWrapper.cs" />
<Compile Include="Layouts\CsvColumn.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.sl5.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@
<Compile Include="LayoutRenderers\Wrappers\UrlEncodeLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapperLayoutRendererBase.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeLayoutRendererWrapper.cs" />
<Compile Include="Layouts\CsvColumn.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.wp7.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@
<Compile Include="LayoutRenderers\Wrappers\UrlEncodeLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapperLayoutRendererBase.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeLayoutRendererWrapper.cs" />
<Compile Include="Layouts\CsvColumn.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.wp71.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@
<Compile Include="LayoutRenderers\Wrappers\UrlEncodeLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapperLayoutRendererBase.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeLayoutRendererWrapper.cs" />
<Compile Include="Layouts\CsvColumn.cs" />
Expand Down
1 change: 1 addition & 0 deletions src/NLog/NLog.wp8.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@
<Compile Include="LayoutRenderers\Wrappers\UrlEncodeLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineLayoutRendererWrapper.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapperLayoutRendererBase.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeLayoutRendererWrapper.cs" />
<Compile Include="Layouts\CsvColumn.cs" />
Expand Down
115 changes: 115 additions & 0 deletions tests/NLog.UnitTests/LayoutRenderers/Wrappers/WrapLineTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
//
// Copyright (c) 2004-2016 Jaroslaw Kowalski <jaak@jkowalski.net>, Kim Christensen, Julian Verdurmen
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * Neither the name of Jaroslaw Kowalski nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
// THE POSSIBILITY OF SUCH DAMAGE.
//

namespace NLog.UnitTests.LayoutRenderers.Wrappers
{
using NLog;
using NLog.Layouts;
using NLog.Targets;
using Xunit;

public class WrapLineTests : NLogTestBase
{
[Fact]
public void WrapLineAtPositionInsideTextTest()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice tests, but we need wrapline=0 and wrapline=-1 (negative) tests IMO

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tests added. I did not find a simple way (other than providing InternalLogger with a StringWriter then test on it (cf InternalLogger). For the moment asserted on output == ""

{
MappedDiagnosticsContext.Clear();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we need this?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I saw it in a lot of other tests. I was thinking it is required. Works without it as well.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK please remove them. Less is more. :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍


SimpleLayout l = "${message:wrapline=3}";

var le = LogEventInfo.Create(LogLevel.Info, "logger", "foobar");

Assert.Equal("foo" + System.Environment.NewLine + "bar", l.Render(le));
}

[Fact]
public void WrapLineMultipleTimesTest()
{
MappedDiagnosticsContext.Clear();

SimpleLayout l = "${message:wrapline=3}";

var le = LogEventInfo.Create(LogLevel.Info, "logger", "foobarbaz");

Assert.Equal("foo" + System.Environment.NewLine + "bar" + System.Environment.NewLine + "baz", l.Render(le));
}

[Fact]
public void WrapLineAtPositionAtExactTextLengthTest()
{
MappedDiagnosticsContext.Clear();

SimpleLayout l = "${message:wrapline=6}";

var le = LogEventInfo.Create(LogLevel.Info, "logger", "foobar");

Assert.Equal("foobar", l.Render(le));
}

[Fact]
public void WrapLineAtPositionSmallerThanTextLengthTest()
{
MappedDiagnosticsContext.Clear();

SimpleLayout l = "${message:wrapline=7}";

var le = LogEventInfo.Create(LogLevel.Info, "logger", "foobar");

Assert.Equal("foobar", l.Render(le));
}

[Fact]
public void WrapLineFromConfig()
{
MappedDiagnosticsContext.Clear();

var configuration = CreateConfigurationFromString(@"
<nlog throwExceptions='true'>
<targets>
<target name='d1' type='Debug' layout='${message:wrapline=3}' />
</targets>
<rules>
<logger name=""*"" minlevel=""Trace"" writeTo=""d1"" />
</rules>
</nlog>");

var d1 = configuration.FindTargetByName("d1") as DebugTarget;
Assert.NotNull(d1);
var layout = d1.Layout as SimpleLayout;
Assert.NotNull(layout);

var result = layout.Render(new LogEventInfo(LogLevel.Info, "Test", "foobar"));
Assert.Equal("foo" + System.Environment.NewLine + "bar", result);
}
}
}
4 changes: 2 additions & 2 deletions tests/NLog.UnitTests/NLog.UnitTests.mono.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<AssemblyKeyContainerName>
</AssemblyKeyContainerName>
<AssemblyKeyContainerName></AssemblyKeyContainerName>
<AssemblyName>NLog.UnitTests</AssemblyName>
<AssemblyOriginatorKeyFile>NLogTests.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
Expand Down Expand Up @@ -153,6 +152,7 @@
<Compile Include="LayoutRenderers\Wrappers\TrimWhiteSpaceTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeTests.cs" />
<Compile Include="Layouts\AllEventPropertiesTests.cs" />
<Compile Include="Layouts\CsvLayoutTests.cs" />
Expand Down
1 change: 1 addition & 0 deletions tests/NLog.UnitTests/NLog.UnitTests.netfx35.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@
<Compile Include="LayoutRenderers\Wrappers\TrimWhiteSpaceTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeTests.cs" />
<Compile Include="Layouts\AllEventPropertiesTests.cs" />
<Compile Include="Layouts\CsvLayoutTests.cs" />
Expand Down
1 change: 1 addition & 0 deletions tests/NLog.UnitTests/NLog.UnitTests.netfx40.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@
<Compile Include="LayoutRenderers\Wrappers\TrimWhiteSpaceTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeTests.cs" />
<Compile Include="Layouts\AllEventPropertiesTests.cs" />
<Compile Include="Layouts\CsvLayoutTests.cs" />
Expand Down
1 change: 1 addition & 0 deletions tests/NLog.UnitTests/NLog.UnitTests.netfx45.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@
<Compile Include="LayoutRenderers\Wrappers\TrimWhiteSpaceTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeTests.cs" />
<Compile Include="Layouts\AllEventPropertiesTests.cs" />
<Compile Include="Layouts\CsvLayoutTests.cs" />
Expand Down
1 change: 1 addition & 0 deletions tests/NLog.UnitTests/NLog.UnitTests.sl4.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@
<Compile Include="LayoutRenderers\Wrappers\TrimWhiteSpaceTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeTests.cs" />
<Compile Include="Layouts\AllEventPropertiesTests.cs" />
<Compile Include="Layouts\CsvLayoutTests.cs" />
Expand Down
1 change: 1 addition & 0 deletions tests/NLog.UnitTests/NLog.UnitTests.sl5.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@
<Compile Include="LayoutRenderers\Wrappers\TrimWhiteSpaceTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenEmptyTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WhenTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\WrapLineTests.cs" />
<Compile Include="LayoutRenderers\Wrappers\XmlEncodeTests.cs" />
<Compile Include="Layouts\AllEventPropertiesTests.cs" />
<Compile Include="Layouts\CsvLayoutTests.cs" />
Expand Down