Adjusted target framework to net standard 1.3
This commit is contained in:
parent
e55e56f3cc
commit
1a3005da22
|
@ -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>
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue