basic structure

This commit is contained in:
Rusty Striker 2024-12-01 17:09:56 +02:00
parent ebb657f372
commit 5623e962cf
Signed by: RustyStriker
GPG key ID: 87E4D691632DFF15
8 changed files with 69 additions and 0 deletions

6
lib/Class1.cs Normal file
View file

@ -0,0 +1,6 @@
namespace lib;
public class Class1
{
}

9
lib/lib.csproj Normal file
View file

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>