summaryrefslogtreecommitdiff
path: root/tests/projects/csharp/existing_csproj/test.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2026-03-14 23:59:57 +0800
committerruki <[email protected]>2026-03-14 23:59:57 +0800
commitca72dbcfd8c45f194b9770f63c91ebd00412fa39 (patch)
tree55b8bedf7da0a11be16c0ff026db3a8bdcf844b6 /tests/projects/csharp/existing_csproj/test.lua
parent894833ab4ed9cc930c60ab7b9dec889ab1a67277 (diff)
improve csproj rules
Diffstat (limited to 'tests/projects/csharp/existing_csproj/test.lua')
-rw-r--r--tests/projects/csharp/existing_csproj/test.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/projects/csharp/existing_csproj/test.lua b/tests/projects/csharp/existing_csproj/test.lua
deleted file mode 100644
index 5ab8adc69..000000000
--- a/tests/projects/csharp/existing_csproj/test.lua
+++ /dev/null
@@ -1,10 +0,0 @@
-import("lib.detect.find_tool")
-
-function test_build(t)
- local dotnet = find_tool("dotnet")
- if dotnet then
- t:build()
- else
- return t:skip("dotnet not found")
- end
-end