добавление официального репозитория удаленных контекстов и проект бенчмарка

This commit is contained in:
2025-02-12 23:01:28 +03:00
parent fc35c92efe
commit 932f915f28
4 changed files with 80 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace mROA.Benchmark;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
+10
View 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>