Rework
This commit is contained in:
12
Run/Program.cs
Normal file
12
Run/Program.cs
Normal 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
16
Run/Run.csproj
Normal 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>
|
Reference in New Issue
Block a user