Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Verify.Expecto.DerivePaths.Tests/Program.cs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
return Runner.RunTestsInAssembly(Runner.DefaultConfig, args);
return Runner.RunTestsInAssemblyWithCLIArgs(Enumerable.Empty<Expecto.Tests.CLIArguments>(), args);
2 changes: 1 addition & 1 deletion src/Verify.Expecto.FSharpTests/Main.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ open Expecto

[<EntryPoint>]
let main argv =
Tests.runTestsInAssembly defaultConfig argv
Tests.runTestsInAssemblyWithCLIArgs [] argv
2 changes: 1 addition & 1 deletion src/Verify.Expecto.Tests/Program.cs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
return Runner.RunTestsInAssembly(Runner.DefaultConfig, args);
return Runner.RunTestsInAssemblyWithCLIArgs(Enumerable.Empty<Expecto.Tests.CLIArguments>(), args);
3 changes: 1 addition & 2 deletions src/Verify.Expecto/Verify.Expecto.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks Condition=" '$(OS)' == 'Windows_NT'">net462;net472;net48</TargetFrameworks>
<TargetFrameworks>$(TargetFrameworks);netstandard2.0;netstandard2.1;netcoreapp3.1;netcoreapp3.0;netcoreapp2.2;netcoreapp2.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<Using Include="Expecto.CSharp" />
Expand Down