Skip to content

Commit

Permalink
Fix the build for Expecto.BenchmarkDotNet.Tests (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
Numpsy authored Aug 18, 2024
1 parent 3642cb0 commit 16b0164
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Expecto.BenchmarkDotNet.Tests/BenchmarkDotNetTests.fs
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ let tests =

[<EntryPoint>]
let main args =
runTestsInAssembly defaultConfig args
runTestsInAssemblyWithCLIArgs [] args
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>netstandard2.1;net6.0</TargetFrameworks>
<TargetFrameworks>net6.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<Compile Include="BenchmarkDotNetTests.fs" />
Expand Down
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Target.create "BuildExpecto" (fun _ ->
)

Target.create "BuildBenchmarkDotNet" (fun _ ->
let sln = NoSln.WriteSolutionFile(files=benchmarkProjects, useTempSolutionFile=true)
let sln = NoSln.WriteSolutionFile(projects=benchmarkProjects, useTempSolutionFile=true)
build sln
)

Expand Down

0 comments on commit 16b0164

Please sign in to comment.