summaryrefslogtreecommitdiff
path: root/tests/projects/csharp/exe_with_package/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/csharp/exe_with_package/xmake.lua')
-rw-r--r--tests/projects/csharp/exe_with_package/xmake.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/projects/csharp/exe_with_package/xmake.lua b/tests/projects/csharp/exe_with_package/xmake.lua
index 8d8539b26..6ec474822 100644
--- a/tests/projects/csharp/exe_with_package/xmake.lua
+++ b/tests/projects/csharp/exe_with_package/xmake.lua
@@ -1,6 +1,8 @@
add_rules("mode.debug", "mode.release")
+add_requires("nuget::Humanizer.Core 2.14.1")
target("app")
set_kind("binary")
add_rules("csharp")
- add_files("src/Program.cs", "src/app.csproj")
+ add_files("src/Program.cs")
+ add_packages("nuget::Humanizer.Core")