This commit is contained in:
2025-05-25 18:37:27 +02:00
parent 90d7281050
commit 01310020ce
10 changed files with 337 additions and 0 deletions

12
Run/Program.cs Normal file
View File

@ -0,0 +1,12 @@
using API;
namespace Run;
class Program
{
static void Main(string[] args)
{
Api a = new (args);
Tracker.Tracker t = new ();
}
}

16
Run/Run.csproj Normal file
View File

@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\API\API.csproj" />
<ProjectReference Include="..\Tracker\Tracker.csproj" />
</ItemGroup>
</Project>