From 1b975ba1bc70014be6a2bb2f1cca0e8b4411f633 Mon Sep 17 00:00:00 2001 From: Bernhard Richter Date: Tue, 19 Nov 2024 14:13:27 +0100 Subject: [PATCH 1/2] Removed unused usings --- src/LightInject/LightInject.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/LightInject/LightInject.cs b/src/LightInject/LightInject.cs index 4683e557..1c4adc7d 100644 --- a/src/LightInject/LightInject.cs +++ b/src/LightInject/LightInject.cs @@ -35,15 +35,6 @@ LightInject version 7.0.0 http://twitter.com/bernhardrichter ******************************************************************************/ -using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.Linq; -using System.Reflection; -using System.Reflection.Emit; -using System.Runtime.CompilerServices; -using LightInject; - [module: System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1126:PrefixCallsCorrectly", Justification = "Reviewed")] [module: System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1101:PrefixLocalCallsWithThis", Justification = "No inheritance")] [module: System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1402:FileMayOnlyContainASingleClass", Justification = "Single source file deployment.")] From 7fc9c61c98493db247c66a6e8a965647e599fdfe Mon Sep 17 00:00:00 2001 From: Bernhard Richter Date: Tue, 19 Nov 2024 14:41:55 +0100 Subject: [PATCH 2/2] Pinned dotnet-ilverify to 8.0.0 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cb659bcf..6153580e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: - name: Install dotnet-script run: dotnet tool install --global dotnet-script - name: Install dotnet-ilverify - run: dotnet tool install --global dotnet-ilverify + run: dotnet tool install --global dotnet-ilverify --version 8.0.0 - name: Run build script run: dotnet-script build/build.csx