feat: initial project setup

Setup initial project with default layout for creating a new repsoitory.
This project will contain everything related to build infra and tools.
This commit is contained in:
Louis Seubert 2024-03-19 22:43:10 +01:00
commit 2fec5e69e3
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
14 changed files with 508 additions and 0 deletions

13
Directory.Build.props Normal file
View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<UseArtifactsOutput>true</UseArtifactsOutput>
</PropertyGroup>
<PropertyGroup>
<PackageId>Geekeey.$(MSBuildProjectName)</PackageId>
<AssemblyName>Geekeey.$(MSBuildProjectName)</AssemblyName>
<RootNamespace>Geekeey.$(MSBuildProjectName)</RootNamespace>
</PropertyGroup>
</Project>