...
This commit is contained in:
@ -7,6 +7,7 @@ using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Options;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace isnd.host.tests
|
||||
{
|
||||
@ -38,11 +39,21 @@ namespace isnd.host.tests
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public static IWebHost BuildWebHost(string[] args) =>
|
||||
WebHost.CreateDefaultBuilder(args)
|
||||
.UseStartup<Startup>()
|
||||
.Build();
|
||||
|
||||
|
||||
private class Butts: List<Butt>
|
||||
{
|
||||
public bool Im12 { get; set; }
|
||||
}
|
||||
|
||||
private class Butt
|
||||
{
|
||||
public bool Im12 { get; set; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||
<TargetFramework>net6</TargetFramework>
|
||||
|
||||
<IsPackable>false</IsPackable>
|
||||
<UserSecretsId>d7144e46-4e63-4391-ba86-64b61f6e7be4</UserSecretsId>
|
||||
@ -28,7 +28,7 @@
|
||||
<Target Name="CopyTestConfig">
|
||||
<Copy
|
||||
SourceFiles="@(MyTestingConfigFiles)"
|
||||
DestinationFolder="bin\Debug\netcoreapp2.1"
|
||||
DestinationFolder="bin\Debug\net6.0"
|
||||
/>
|
||||
</Target>
|
||||
</Project>
|
||||
|
Reference in New Issue
Block a user