From 1a3005da229bb17c907ebe6be54290e92d82c117 Mon Sep 17 00:00:00 2001 From: Serraniel Date: Thu, 26 Oct 2017 18:57:15 +0200 Subject: [PATCH] Adjusted target framework to net standard 1.3 --- SweetLib/SweetLib.csproj | 2 +- SweetLib/Utils/Logger/Memory/ArchivableConsoleLogMemory.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SweetLib/SweetLib.csproj b/SweetLib/SweetLib.csproj index aabb48e..b87cad6 100644 --- a/SweetLib/SweetLib.csproj +++ b/SweetLib/SweetLib.csproj @@ -1,7 +1,7 @@ - netstandard1.1 + netstandard1.3 0.2.0 Sweet collection of helpful utils in .Net Serraniel diff --git a/SweetLib/Utils/Logger/Memory/ArchivableConsoleLogMemory.cs b/SweetLib/Utils/Logger/Memory/ArchivableConsoleLogMemory.cs index 482dac5..b0c64bf 100644 --- a/SweetLib/Utils/Logger/Memory/ArchivableConsoleLogMemory.cs +++ b/SweetLib/Utils/Logger/Memory/ArchivableConsoleLogMemory.cs @@ -16,7 +16,7 @@ namespace SweetLib.Utils.Logger.Memory private ConcurrentQueue LogQueue { get; } = new ConcurrentQueue(); - public string ArchiveFile { get; set; } = null; + public string ArchiveFile { get; set; } public bool AutoArchiveOnDispose { get; set; } = true;