Bot .NET Core 1 and .NET Core 2 have reached end of support. The following warnings were displayed when compiling:
Microsoft.NET.EolTargetFrameworks.targets(28, 5): [NETSDK1138] The target framework 'netcoreapp1.1' is out of support and will not receive security updates in the future. Please refer to https://aka.ms/dotnet-core-support for more information about the support policy.
Microsoft.NET.EolTargetFrameworks.targets(28, 5): [NETSDK1138] The target framework 'netcoreapp2.0' is out of support and will not receive security updates in the future. Please refer to https://aka.ms/dotnet-core-support for more information about the support policy.
Replace netcoreapp1.1 + netcoreapp2.0 with netstandard1.6 in Ductus.FluentDocker.MsTest. This required to bump MSTest.TestFramework to version 1.1.17 which is the first version to support .NET Standard.
Replace netcoreapp2.0 with net5.0 in Ductus.FluentDocker.Tests
Bot .NET Core 1 and .NET Core 2 have reached end of support. The following warnings were displayed when compiling:
Replace netcoreapp1.1 + netcoreapp2.0 with netstandard1.6 in Ductus.FluentDocker.MsTest. This required to bump MSTest.TestFramework to version 1.1.17 which is the first version to support .NET Standard.
Replace netcoreapp2.0 with net5.0 in Ductus.FluentDocker.Tests