Projektdateien hinzufügen.

This commit is contained in:
2024-05-15 16:50:02 +02:00
parent 8278ef223f
commit dba3ac6231
3 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Pilz.Plugins" Version="2.1.5" />
<PackageReference Include="Pilz.Plugins.Advanced" Version="2.7.3" />
</ItemGroup>
</Project>

10
OwnChar.Server/Program.cs Normal file
View File

@@ -0,0 +1,10 @@
namespace OwnChar.Server
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
}