Bump client version

rendering v1.20
Liza 2022-11-30 14:22:49 +01:00
parent 2ac674da37
commit 0d8a39a2b2
2 changed files with 4 additions and 2 deletions

View File

@ -14,7 +14,9 @@ namespace Pal.Client.Net
_name = name;
}
public IDisposable BeginScope<TState>(TState state) => NullScope.Instance;
public IDisposable BeginScope<TState>(TState state)
where TState: notnull
=> NullScope.Instance;
public bool IsEnabled(LogLevel logLevel) => logLevel != LogLevel.None;

View File

@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
<LangVersion>9.0</LangVersion>
<Version>1.19</Version>
<Version>1.20</Version>
<Nullable>enable</Nullable>
</PropertyGroup>