-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Description
I run the following command to build and run benchmarks:
dotnet restore /p:BASELINE=1
dotnet build /p:BASELINE=1 -c Release
dotnet exec -c Release -f netcoreapp1.1 bin/Release/netcoreapp1.1/benchmarks.dllBut BenchmarkDotNet creates its own wrapping project and does not pass /p:BASELINE=1 to msbuild. Here is content of BDN.Generated.sh
call dotnet restore --no-dependencies
call dotnet build --framework netcoreapp1.1 --configuration Release
while it should be
call dotnet restore /p:BASELINE=1 --no-dependencies
call dotnet build /p:BASELINE=1 --framework netcoreapp1.1 --configuration Release
SupinePandora43 and PaulusParssinen