Compare commits
5 Commits
1a450af551
...
3f1b164c81
| Author | SHA1 | Date | |
|---|---|---|---|
| 3f1b164c81 | |||
| 697fa36e11 | |||
| a7d4720918 | |||
| 3dd056327d | |||
| 9bdfa8504a |
5
.editorconfig
Normal file
5
.editorconfig
Normal file
@@ -0,0 +1,5 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
end_of_line = lf
|
||||
charset = utf-8-bom
|
||||
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
*/bin
|
||||
*/obj
|
||||
.vs
|
||||
10
BrokerDogConsole/BrokerDogConsole.csproj
Normal file
10
BrokerDogConsole/BrokerDogConsole.csproj
Normal file
@@ -0,0 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
7
BrokerDogConsole/main.cs
Normal file
7
BrokerDogConsole/main.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Hello, World!");
|
||||
}
|
||||
}
|
||||
14
BrokerDogLib/BrokerDogLib.cs
Normal file
14
BrokerDogLib/BrokerDogLib.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace BrokerDogLib;
|
||||
|
||||
public static class BrokerDogLib
|
||||
{
|
||||
public static string SayHello()
|
||||
{
|
||||
return "Hello";
|
||||
}
|
||||
|
||||
public static string SayWorld()
|
||||
{
|
||||
return "World";
|
||||
}
|
||||
}
|
||||
9
BrokerDogLib/BrokerDogLib.csproj
Normal file
9
BrokerDogLib/BrokerDogLib.csproj
Normal file
@@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
11
BrokerDogTest/BrokerDogTest.cs
Normal file
11
BrokerDogTest/BrokerDogTest.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace BrokerDogTest;
|
||||
|
||||
[TestClass]
|
||||
public sealed class BrokerDogTest
|
||||
{
|
||||
[TestMethod]
|
||||
public void TestMethod()
|
||||
{
|
||||
Assert.IsTrue(true);
|
||||
}
|
||||
}
|
||||
19
BrokerDogTest/BrokerDogTest.csproj
Normal file
19
BrokerDogTest/BrokerDogTest.csproj
Normal file
@@ -0,0 +1,19 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
|
||||
<PackageReference Include="MSTest" Version="3.6.4" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
1
BrokerDogTest/MSTestSettings.cs
Normal file
1
BrokerDogTest/MSTestSettings.cs
Normal file
@@ -0,0 +1 @@
|
||||
[assembly: Parallelize(Scope = ExecutionScope.MethodLevel)]
|
||||
Reference in New Issue
Block a user