Skip to content

Commit

Permalink
nuget package
Browse files Browse the repository at this point in the history
  • Loading branch information
andreakarasho committed Mar 9, 2024
1 parent 5e5f809 commit ff15e53
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# TinyEcs

![NuGet Version](https://img.shields.io/nuget/v/TinyEcs.Main?label=TinyEcs)
![NuGet Version](https://img.shields.io/nuget/v/TinyEcs.Plugins?label=TinyEcs.Plugins)

Small project born by the need of a reflection-free dotnet ECS library.<br>
NativeAOT & bflat compatible.
Compatible with all major game engines/frameworks Unity, Godot, Monogame, FNA, Raylib-cs, etc...
Expand Down
13 changes: 13 additions & 0 deletions plugins/TinyEcs.Plugins/TinyEcs.Plugins.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@
<LangVersion>preview</LangVersion>
</PropertyGroup>

<PropertyGroup>
<PackageId>TinyEcs.Plugins</PackageId>
<PackageVersion>1.0.0</PackageVersion>
<Authors>andreakarasho</Authors>
<Description>Entity Component System</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>First release</PackageReleaseNotes>
<PackageTags>ecs gamedev game unity godot monogame fna nativeaot naot</PackageTags>
<PackageProjectUrl>https://github.com/andreakarasho/TinyEcs</PackageProjectUrl>
<RepositoryUrl>https://github.com/andreakarasho/TinyEcs</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\TinyEcs.csproj" />
</ItemGroup>
Expand Down
13 changes: 13 additions & 0 deletions src/TinyEcs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\Generated</CompilerGeneratedFilesOutputPath>
</PropertyGroup>

<PropertyGroup>
<PackageId>TinyEcs.Main</PackageId>
<PackageVersion>1.0.0</PackageVersion>
<Authors>andreakarasho</Authors>
<Description>Entity Component System</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>First release</PackageReleaseNotes>
<PackageTags>ecs gamedev game unity godot monogame fna nativeaot naot</PackageTags>
<PackageProjectUrl>https://github.com/andreakarasho/TinyEcs</PackageProjectUrl>
<RepositoryUrl>https://github.com/andreakarasho/TinyEcs</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
</PropertyGroup>

<ItemGroup>
<InternalsVisibleTo Include="$(AssemblyName).Tests" />
</ItemGroup>
Expand Down

0 comments on commit ff15e53

Please sign in to comment.