외부 프로젝트 의존 테스트
This commit is contained in:
6
Sources/SampleLib/Class1.cs
Normal file
6
Sources/SampleLib/Class1.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace SampleLib;
|
||||
|
||||
public class Class1
|
||||
{
|
||||
|
||||
}
|
||||
15
Sources/SampleLib/SampleClass.cs
Normal file
15
Sources/SampleLib/SampleClass.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
9
Sources/SampleLib/SampleLib.csproj
Normal file
9
Sources/SampleLib/SampleLib.csproj
Normal file
@@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user