Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the build for Expecto.BenchmarkDotNet.Tests #506

Merged
merged 1 commit into from
Aug 18, 2024
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 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
Loading