summaryrefslogtreecommitdiff
path: root/tests/projects/csharp/multiple_library/src/sample
diff options
context:
space:
mode:
authorJassJam <[email protected]>2026-02-23 12:28:50 +0000
committerruki <[email protected]>2026-03-14 00:08:40 +0800
commit9946d1814f4af9ef67e5accd9404e0fc69290f6f (patch)
treef669ea003ab4947aabb7732696aefa4e62f5793c /tests/projects/csharp/multiple_library/src/sample
parent95fa1f158a4044b9851ce6c0f4ff21f3427ce83e (diff)
feat: add initial test files
Diffstat (limited to 'tests/projects/csharp/multiple_library/src/sample')
-rw-r--r--tests/projects/csharp/multiple_library/src/sample/Program.cs3
-rw-r--r--tests/projects/csharp/multiple_library/src/sample/sample.csproj14
2 files changed, 17 insertions, 0 deletions
diff --git a/tests/projects/csharp/multiple_library/src/sample/Program.cs b/tests/projects/csharp/multiple_library/src/sample/Program.cs
new file mode 100644
index 000000000..2292a8af9
--- /dev/null
+++ b/tests/projects/csharp/multiple_library/src/sample/Program.cs
@@ -0,0 +1,3 @@
+using LibBeta;
+
+Console.WriteLine(Beta.Message()); \ No newline at end of file
diff --git a/tests/projects/csharp/multiple_library/src/sample/sample.csproj b/tests/projects/csharp/multiple_library/src/sample/sample.csproj
new file mode 100644
index 000000000..459440d0e
--- /dev/null
+++ b/tests/projects/csharp/multiple_library/src/sample/sample.csproj
@@ -0,0 +1,14 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>net8.0</TargetFramework>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <Nullable>enable</Nullable>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="../libbeta/libbeta.csproj" />
+ </ItemGroup>
+
+</Project>