Skip to content

Commit 5fc5634

Browse files
authored
Merge pull request #113 from Umplify:112-remove-getconfigurationfiles-method
Remove GetConfigurationFiles() method
2 parents 1916f6d + 195a029 commit 5fc5634

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

azure-pipeline-PR.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ steps:
1717
displayName: 'Use .NET 6.0 sdk'
1818
inputs:
1919
packageType: sdk
20-
version: 6.0.201
20+
version: 6.0.202
2121
installationPath: $(Agent.ToolsDirectory)/dotnet
2222
- script: echo Started restoring the source code
2323
- task: DotNetCoreCLI@2

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ steps:
1919
displayName: 'Use .NET 6.0 sdk'
2020
inputs:
2121
packageType: sdk
22-
version: 6.0.201
22+
version: 6.0.202
2323
installationPath: $(Agent.ToolsDirectory)/dotnet
2424
- script: echo Started restoring the source code
2525
- task: DotNetCoreCLI@2

examples/Xunit.Microsoft.DependencyInjection.ExampleTests/Fixtures/TestFixture.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ protected override void AddServices(IServiceCollection services, IConfiguration?
1010
protected override ValueTask DisposeAsyncCore()
1111
=> new();
1212

13-
protected override IEnumerable<string> GetConfigurationFiles()
14-
{
15-
yield return "appsettings.json";
16-
}
17-
1813
protected override IEnumerable<TestAppSettings> GetTestAppSettings()
1914
{
2015
yield return new() { Filename = "appsettings.json", IsOptional = false };

src/Abstracts/TestBedFixture.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ public IServiceProvider GetServiceProvider(ITestOutputHelper testOutputHelper)
4040
=> GetServiceProvider(testOutputHelper).GetService<T>();
4141

4242
protected abstract void AddServices(IServiceCollection services, IConfiguration? configuration);
43-
protected abstract IEnumerable<string> GetConfigurationFiles();
4443
protected abstract IEnumerable<TestAppSettings> GetTestAppSettings();
4544

4645
protected virtual ILoggingBuilder AddLoggingProvider(ILoggingBuilder loggingBuilder, ILoggerProvider loggerProvider)

0 commit comments

Comments
 (0)