Start project pacserver

This commit is contained in:
ProfessionalUwU 2023-05-27 18:04:13 +02:00
parent 5bdcbdff4b
commit 00b50f0601
Signed by: ProfessionalUwU
GPG Key ID: 013AD77C0A9DD3F2
3 changed files with 15 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.vscode/
obj/
bin/

2
Program.cs Normal file
View File

@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");

10
pacserver.csproj Normal file
View File

@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>