diff --git a/Directory.Build.props b/Directory.Build.props index e0a1e54..8b169e1 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -2,7 +2,7 @@ - 2023.3.2 + 2024.1.4 diff --git a/build/_build.csproj b/build/_build.csproj index ca98933..d34d145 100644 --- a/build/_build.csproj +++ b/build/_build.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 CS0649;CS0169 .. @@ -15,9 +15,9 @@ - - - + + + diff --git a/src/.idea/.idea.ReSharper.Structured.Logging/.idea/.gitignore b/src/.idea/.idea.ReSharper.Structured.Logging/.idea/.gitignore index fe1c087..95d2a6f 100644 --- a/src/.idea/.idea.ReSharper.Structured.Logging/.idea/.gitignore +++ b/src/.idea/.idea.ReSharper.Structured.Logging/.idea/.gitignore @@ -11,3 +11,5 @@ # Datasource local storage ignored files /dataSources/ /dataSources.local.xml +# GitHub Copilot persisted chat sessions +/copilot/chatSessions diff --git a/test/src/Analyzer/ContextualLoggerConstructorAnalyzerTests.cs b/test/src/Analyzer/ContextualLoggerConstructorAnalyzerTests.cs index e146ce2..581533f 100644 --- a/test/src/Analyzer/ContextualLoggerConstructorAnalyzerTests.cs +++ b/test/src/Analyzer/ContextualLoggerConstructorAnalyzerTests.cs @@ -1,7 +1,10 @@ -using NUnit.Framework; +using JetBrains.ReSharper.TestFramework; + +using NUnit.Framework; namespace ReSharper.Structured.Logging.Tests.Analyzer { + [TestNet60] public class ContextualLoggerConstructorAnalyzerTests : MessageTemplateAnalyzerTestBase { protected override string SubPath => "ContextualLoggerConstructor"; diff --git a/test/src/Constants/NugetPackages.cs b/test/src/Constants/NugetPackages.cs index 0b66e9b..93bb3ac 100644 --- a/test/src/Constants/NugetPackages.cs +++ b/test/src/Constants/NugetPackages.cs @@ -4,7 +4,7 @@ internal static class NugetPackages { public const string SerilogNugetPackage = "Serilog/2.7.1"; - public const string MicrosoftLoggingPackage = "Microsoft.Extensions.Logging/1.0.0"; + public const string MicrosoftLoggingPackage = "Microsoft.Extensions.Logging/6.0.0"; public const string NlogLoggingPackage = "NLog/4.5.11";