diff --git a/LICENSE b/LICENSE index a8e99e9..afdce96 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 Kysect +Copyright (c) 2024 Kysect Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Sources/Directory.Build.props b/Sources/Directory.Build.props index af1c485..0b3b495 100644 --- a/Sources/Directory.Build.props +++ b/Sources/Directory.Build.props @@ -3,6 +3,7 @@ https://github.com/kysect/Kysect.CommonLib https://github.com/kysect/Kysect.CommonLib + Readme.md @@ -16,8 +17,8 @@ - runtime; build; native; contentfiles; analyzers; buildtransitive all + runtime; build; native; contentfiles; analyzers; buildtransitive runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/Sources/Directory.Packages.props b/Sources/Directory.Packages.props index 69f63c5..c77e4b3 100644 --- a/Sources/Directory.Packages.props +++ b/Sources/Directory.Packages.props @@ -5,7 +5,7 @@ - + @@ -14,14 +14,14 @@ - + - + - + @@ -30,12 +30,12 @@ - + - - - + + + \ No newline at end of file diff --git a/Sources/Kysect.CommonLib.Testing/TestLoggerProvider.cs b/Sources/Kysect.CommonLib.Testing/TestLoggerProvider.cs deleted file mode 100644 index 81ab20d..0000000 --- a/Sources/Kysect.CommonLib.Testing/TestLoggerProvider.cs +++ /dev/null @@ -1,21 +0,0 @@ -using Microsoft.Extensions.Logging; - -#if DEBUG -using Kysect.CommonLib.DependencyInjection.Logging; -#else -using Microsoft.Extensions.Logging.Abstractions; -#endif - -namespace Kysect.CommonLib.Testing; - -public static class TestLoggerProvider -{ - public static ILogger Provide() - { -#if DEBUG - return DefaultLoggerConfiguration.CreateConsoleLogger(); -#else - return NullLogger.Instance; -#endif - } -} \ No newline at end of file