diff --git a/azure-pipeline-PR.yml b/azure-pipeline-PR.yml index 19cdde4..e07bd74 100644 --- a/azure-pipeline-PR.yml +++ b/azure-pipeline-PR.yml @@ -17,7 +17,7 @@ steps: displayName: 'Use .NET 6.0 sdk' inputs: packageType: sdk - version: 6.0.201 + version: 6.0.202 installationPath: $(Agent.ToolsDirectory)/dotnet - script: echo Started restoring the source code - task: DotNetCoreCLI@2 diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c975d26..872440d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,7 +19,7 @@ steps: displayName: 'Use .NET 6.0 sdk' inputs: packageType: sdk - version: 6.0.201 + version: 6.0.202 installationPath: $(Agent.ToolsDirectory)/dotnet - script: echo Started restoring the source code - task: DotNetCoreCLI@2 diff --git a/examples/Xunit.Microsoft.DependencyInjection.ExampleTests/Fixtures/TestFixture.cs b/examples/Xunit.Microsoft.DependencyInjection.ExampleTests/Fixtures/TestFixture.cs index 1801839..429e338 100644 --- a/examples/Xunit.Microsoft.DependencyInjection.ExampleTests/Fixtures/TestFixture.cs +++ b/examples/Xunit.Microsoft.DependencyInjection.ExampleTests/Fixtures/TestFixture.cs @@ -10,11 +10,6 @@ protected override void AddServices(IServiceCollection services, IConfiguration? protected override ValueTask DisposeAsyncCore() => new(); - protected override IEnumerable GetConfigurationFiles() - { - yield return "appsettings.json"; - } - protected override IEnumerable GetTestAppSettings() { yield return new() { Filename = "appsettings.json", IsOptional = false }; diff --git a/src/Abstracts/TestBedFixture.cs b/src/Abstracts/TestBedFixture.cs index f1d221a..0da40ce 100644 --- a/src/Abstracts/TestBedFixture.cs +++ b/src/Abstracts/TestBedFixture.cs @@ -40,7 +40,6 @@ public IServiceProvider GetServiceProvider(ITestOutputHelper testOutputHelper) => GetServiceProvider(testOutputHelper).GetService(); protected abstract void AddServices(IServiceCollection services, IConfiguration? configuration); - protected abstract IEnumerable GetConfigurationFiles(); protected abstract IEnumerable GetTestAppSettings(); protected virtual ILoggingBuilder AddLoggingProvider(ILoggingBuilder loggingBuilder, ILoggerProvider loggerProvider)