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 4 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
107 changes: 107 additions & 0 deletions src/NLog/LayoutRenderers/Wrappers/WrapLineLayoutRendererWrapper.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
//
// 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)
{
if (WrapLine <= 0)
{
throw new ArgumentException("WrapLine must be a positive integer");
Copy link
Member

Choose a reason for hiding this comment

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

I'm doubting if this is the best way. We can also move the check to the setter. Wat do you think?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Putting it in the setter will throw an exception :
NLog.NLogConfigurationException : Error when setting property 'WrapLine' on Layout Renderer: ${wrapline}
-> will fail faster, on Layout creation, with an exception

Leaving it here will log into InternalLogger. I had a look at other WrappingLayoutRenderers, did not find similar case.
-> will fail later, more silently, producing an empty string, and logging a warning in internal logger.

An alternative could be something like this:

protected override string Transform(string text)
{
    if (WrapLine <= 0)
    {
        InternalLogger.Warn("WrapLine must be a positive integer");
        return text;
    }

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 the last proposal is the best :)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Ok !

}

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


if (text.Length <= chunkLength) return text;

// preallocate correct number of chars
var result = new StringBuilder(text.Length + (text.Length / chunkLength) * 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.

Good one!


// 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 > text.Length)
{
chunkLength = text.Length - pos;
}

result.Append(text.Substring(pos, chunkLength));

if (chunkLength + pos < text.Length)
{
result.Append(Environment.NewLine);
}
}

return result.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
164 changes: 164 additions & 0 deletions tests/NLog.UnitTests/LayoutRenderers/Wrappers/WrapLineTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
//
// 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.Common;
using NLog.Layouts;
using NLog.Targets;
using Xunit;

public class WrapLineTests : NLogTestBase
{
[Fact]
public void WrapLineAtPositionOnceTest()
{
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 WrapLineAtPositionOnceTextLengthNotMultipleTest()
{
MappedDiagnosticsContext.Clear();

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

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

Assert.Equal("foo" + System.Environment.NewLine + "ba", 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 WrapLineMultipleTimesTextLengthNotMultipleTest()
{
MappedDiagnosticsContext.Clear();

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

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

Assert.Equal("foo" + System.Environment.NewLine + "bar" + System.Environment.NewLine + "ba", 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 WrapLineAtPositionGreaterThanTextLengthTest()
{
MappedDiagnosticsContext.Clear();

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

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

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

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

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

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

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

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

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

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

Assert.Equal("", 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
Loading