Compare commits
4 Commits
10cd2ac4c9
...
56334d6a64
| Author | SHA1 | Date | |
|---|---|---|---|
| 56334d6a64 | |||
| e642690a43 | |||
| 7704e68b12 | |||
| c03144a769 |
31
Warhound.sln
Normal file
31
Warhound.sln
Normal 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
|
||||||
10
WarhoundConsole/Program.cs
Normal file
10
WarhoundConsole/Program.cs
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
namespace WarhoundConsole
|
||||||
|
{
|
||||||
|
internal class Program
|
||||||
|
{
|
||||||
|
static void Main(string[] args)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Hello, World!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
14
WarhoundConsole/WarhoundConsole.csproj
Normal file
14
WarhoundConsole/WarhoundConsole.csproj
Normal 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
4
WarhoundLib/Class.cs
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
namespace WarhoundLib
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
9
WarhoundLib/WarhoundLib.csproj
Normal file
9
WarhoundLib/WarhoundLib.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>
|
||||||
1
WarhoundTest/MSTestSettings.cs
Normal file
1
WarhoundTest/MSTestSettings.cs
Normal file
@@ -0,0 +1 @@
|
|||||||
|
[assembly: Parallelize(Scope = ExecutionScope.MethodLevel)]
|
||||||
11
WarhoundTest/Test1.cs
Normal file
11
WarhoundTest/Test1.cs
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
namespace WarhoundTest
|
||||||
|
{
|
||||||
|
[TestClass]
|
||||||
|
public sealed class Test1
|
||||||
|
{
|
||||||
|
[TestMethod]
|
||||||
|
public void TestMethod1()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
15
WarhoundTest/WarhoundTest.csproj
Normal file
15
WarhoundTest/WarhoundTest.csproj
Normal 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>
|
||||||
Reference in New Issue
Block a user