bump sdk to net-9

This commit is contained in:
Paul Schneider 2025-06-08 14:41:50 +01:00
commit 5998c474af
30 changed files with 372 additions and 1067 deletions

View file

@ -1,25 +1,18 @@
using System;
using Microsoft.Dnx.Compilation.CSharp;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.PlatformAbstractions;
using Xunit.Abstractions;
namespace yavscTests
{
public class BaseTestContext {
protected IApplicationEnvironment applicationEnvironment = null;
protected IServiceProvider serviceProvider = null;
protected IConfigurationRoot configurationRoot;
protected BeforeCompileContext beforeCompileContext;
protected IServiceProvider provider;
protected IConfigurationRoot configuration;
protected readonly ITestOutputHelper _output;
protected ServerSideFixture _serverFixture;
public BaseTestContext(ITestOutputHelper output, ServerSideFixture serverFixture)
public BaseTestContext( ServerSideFixture serverFixture)
{
this._output = output;
this._serverFixture = serverFixture;
}
}