Skip to content

Commit 12db16b

Browse files
committed
Fix outputpath
1 parent d2b77ff commit 12db16b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

justfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ build-tests: restore-tests
3535
just build Rubjerg.Graphviz.Tests.sln
3636

3737
# Run unit tests for a project
38-
test PROJECT:
38+
test PROJECT OUTPUT_PATH='bin/x64/Release/net8.0/':
3939
dotnet test --no-build \
40-
-p:OutputPath=bin/x64/Release/net8.0 \
40+
-p:OutputPath={{OUTPUT_PATH}} \
4141
-c Release \
4242
-f net8.0 \
4343
-v d \
@@ -61,8 +61,8 @@ test-nugetorg:
6161
test-win-x64: restore-tests
6262
dotnet build Rubjerg.Graphviz.Test/Rubjerg.Graphviz.Test.csproj --configuration Release --no-restore -r win-x64;
6363
dotnet build Rubjerg.Graphviz.TransitiveTest/Rubjerg.Graphviz.TransitiveTest.csproj --configuration Release --no-restore -r win-x64;
64-
just test Rubjerg.Graphviz.Test/Rubjerg.Graphviz.Test.csproj
65-
just test Rubjerg.Graphviz.TransitiveTest/Rubjerg.Graphviz.TransitiveTest.csproj
64+
just test Rubjerg.Graphviz.Test/Rubjerg.Graphviz.Test.csproj bin/Release/net8.0/win-x64/
65+
just test Rubjerg.Graphviz.TransitiveTest/Rubjerg.Graphviz.TransitiveTest.csproj bin/Release/net8.0/win-x64/
6666

6767
locate-nupkg GITHUB_OUTPUT:
6868
echo "package=$(find . -name "Rubjerg.Graphviz.*.nupkg" | head -1)" >> "{{GITHUB_OUTPUT}}"
@@ -80,7 +80,7 @@ normalize:
8080
bash -c "git ls-files -- ':!GraphvizWrapper/graphvizfiles/*' ':!*.sh' | xargs unix2dos"
8181

8282
# Format the code
83-
format:
83+
format:
8484
dotnet format whitespace -v diag Rubjerg.Graphviz.sln
8585
dotnet format whitespace -v diag Rubjerg.Graphviz.Tests.sln
8686

0 commit comments

Comments
 (0)