Added project for building dll file

This commit is contained in:
Chris Bell 2025-01-01 23:02:41 -06:00
parent 22b25cd8a8
commit 60979355d4
3 changed files with 28 additions and 0 deletions

View File

@ -7,4 +7,8 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Content Include="src\CogwheelLib.csproj" />
</ItemGroup>
</Project>

24
src/CogwheelLib.csproj Normal file
View File

@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Cogwheel</PackageId>
<Version>1.0.0</Version>
<Authors>Chris Bell</Authors>
<Company>Bellsworne Tech</Company>
<Description>A suite of development tools for games</Description>
<PackageTags>tools;gamedevelopment;debug</PackageTags>
<RepositoryUrl>https://git.bellsworne.tech/Bellsworne/Cogwheel.git</RepositoryUrl>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
</PropertyGroup>
<ItemGroup>
<Compile Include="**\*.cs" />
<None Include="**\*.csproj" />
</ItemGroup>
</Project>