Compare commits

...

4 Commits

Author SHA1 Message Date
56334d6a64 테스트 프로젝트 추가 2025-10-15 02:04:16 +09:00
e642690a43 라이브러리 추가 2025-10-15 02:01:31 +09:00
7704e68b12 콘솔 프로젝트 추가 2025-10-15 01:59:11 +09:00
c03144a769 빈 비주얼 스튜디오 솔루션 추가 2025-10-15 01:38:16 +09:00
8 changed files with 95 additions and 0 deletions

31
Warhound.sln Normal file
View File

@@ -0,0 +1,31 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.14.36518.9
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WarhoundConsole", "WarhoundConsole\WarhoundConsole.csproj", "{F1D74A75-5CE9-4B62-852C-C8F3E5884A5C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WarhoundLib", "WarhoundLib\WarhoundLib.csproj", "{7E3472E9-86E9-4032-826C-0DA805C2EBCE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F1D74A75-5CE9-4B62-852C-C8F3E5884A5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F1D74A75-5CE9-4B62-852C-C8F3E5884A5C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F1D74A75-5CE9-4B62-852C-C8F3E5884A5C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F1D74A75-5CE9-4B62-852C-C8F3E5884A5C}.Release|Any CPU.Build.0 = Release|Any CPU
{7E3472E9-86E9-4032-826C-0DA805C2EBCE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7E3472E9-86E9-4032-826C-0DA805C2EBCE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7E3472E9-86E9-4032-826C-0DA805C2EBCE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7E3472E9-86E9-4032-826C-0DA805C2EBCE}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {B04996F1-72DF-42F7-B33B-F5C6608DADA9}
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,10 @@
namespace WarhoundConsole
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
}

View File

@@ -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="..\WarhoundLib\WarhoundLib.csproj" />
</ItemGroup>
</Project>

4
WarhoundLib/Class.cs Normal file
View File

@@ -0,0 +1,4 @@
namespace WarhoundLib
{
}

View File

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

View File

@@ -0,0 +1 @@
[assembly: Parallelize(Scope = ExecutionScope.MethodLevel)]

11
WarhoundTest/Test1.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace WarhoundTest
{
[TestClass]
public sealed class Test1
{
[TestMethod]
public void TestMethod1()
{
}
}
}

View File

@@ -0,0 +1,15 @@
<Project Sdk="MSTest.Sdk/3.6.4">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!--
Displays error on console in addition to the log file. Note that this feature comes with a performance impact.
For more information, visit https://learn.microsoft.com/dotnet/core/testing/unit-testing-platform-integration-dotnet-test#show-failure-per-test
-->
<TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure>
</PropertyGroup>
</Project>