diff --git a/Justfile b/Justfile index 683ed773..41a372eb 100644 --- a/Justfile +++ b/Justfile @@ -36,7 +36,7 @@ test-dotnet: # Make sure the DLL + Interop files exist cargo build -p reference_project --all-features cargo test --test mod reference_project::interop --all-features - dotnet test --project crates/backend_csharp/tests/reference_project/Tests/Tests.csproj + cd crates/backend_csharp && dotnet test --project tests/reference_project/Tests/Tests.csproj # Runs .NET benchmarks. bench-dotnet: @@ -79,4 +79,4 @@ test-agent: # Agents: Feel free to update the test logic here for the task at hand. cargo build -p reference_project --all-features cargo test -p interoptopus_csharp --test mod reference_project::interop --all-features - dotnet test --project crates/backend_csharp/tests/reference_project/Tests/Tests.csproj + cd crates/backend_csharp && dotnet test --project tests/reference_project/Tests/Tests.csproj diff --git a/global.json b/crates/backend_csharp/global.json similarity index 100% rename from global.json rename to crates/backend_csharp/global.json