summaryrefslogtreecommitdiff
path: root/tests/projects/csharp/existing_csproj/test.lua
diff options
context:
space:
mode:
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