Adjusted target framework to net standard 1.3

This commit is contained in:
Serraniel 2017-10-26 18:57:15 +02:00
parent e55e56f3cc
commit 1a3005da22
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.1</TargetFramework>
<TargetFramework>netstandard1.3</TargetFramework>
<Version>0.2.0</Version>
<Description>Sweet collection of helpful utils in .Net</Description>
<Authors>Serraniel</Authors>

View file

@ -16,7 +16,7 @@ namespace SweetLib.Utils.Logger.Memory
private ConcurrentQueue<LogMessage> LogQueue { get; } = new ConcurrentQueue<LogMessage>();
public string ArchiveFile { get; set; } = null;
public string ArchiveFile { get; set; }
public bool AutoArchiveOnDispose { get; set; } = true;