외부 프로젝트 의존 테스트

This commit is contained in:
2025-03-16 16:28:41 +09:00
parent 1aee49178d
commit f7ca00c9d9
14 changed files with 191 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
namespace SampleLib;
public class Class1
{
}

View File

@@ -0,0 +1,15 @@
namespace SampleLib
{
public static class SampleClass
{
public static string GetSampleString()
{
return "Sample" + "String";
}
public static string SuperSampleString()
{
return "Super" + GetSampleString();
}
}
}

View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>