Skip to content

Commit 26469aa

Browse files
Updated .csproj to include package informations
1 parent 08cf3e7 commit 26469aa

File tree

5 files changed

+59
-0
lines changed

5 files changed

+59
-0
lines changed

examples/DotNetElements.DebugRenderer.Examples.OpenTk/DotNetElements.DebugRenderer.Examples.OpenTk.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
9+
<IsPackable>false</IsPackable>
910
</PropertyGroup>
1011

1112
<ItemGroup>

examples/DotNetElements.DebugRenderer.Examples.SilkNet/DotNetElements.DebugRenderer.Examples.Silk.Net.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<TargetFramework>net9.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
8+
<IsPackable>false</IsPackable>
89
</PropertyGroup>
910

1011
<ItemGroup>

src/DotNetElements.DebugRenderer.OpenTk/DotNetElements.DebugRenderer.OpenTk.csproj

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,24 @@
1414
<ItemGroup>
1515
<ProjectReference Include="..\DotNetElements.DebugRenderer\DotNetElements.DebugRenderer.Core.csproj" />
1616
</ItemGroup>
17+
18+
<PropertyGroup>
19+
<PackageId>DotNetElements.DebugDraw.OpenTK</PackageId>
20+
<Title>DotNetElements - DebugDraw OpenTK backend</Title>
21+
<Description>OpenTK backend for DotNetElements.DebugDraw</Description>
22+
<Authors>Felix-CodingClimber</Authors>
23+
<Copyright>Felix-CodingClimber</Copyright>
24+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
25+
<PackageProjectUrl>https://github.com/Felix-CodingClimber/DebugDraw</PackageProjectUrl>
26+
<RepositoryUrl>https://github.com/Felix-CodingClimber/DebugDraw</RepositoryUrl>
27+
<RepositoryType>git</RepositoryType>
28+
<PackageReadmeFile>README.md</PackageReadmeFile>
29+
<PackageIcon>logo-small-nuget.png</PackageIcon>
30+
</PropertyGroup>
31+
32+
<ItemGroup>
33+
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
34+
<None Include="..\..\brand\logo-small-nuget.png" Pack="true" PackagePath="\" />
35+
</ItemGroup>
1736

1837
</Project>

src/DotNetElements.DebugRenderer.Silk.Net/DotNetElements.DebugRenderer.Silk.Net.csproj

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,24 @@
1515
<ItemGroup>
1616
<ProjectReference Include="..\DotNetElements.DebugRenderer\DotNetElements.DebugRenderer.Core.csproj" />
1717
</ItemGroup>
18+
19+
<PropertyGroup>
20+
<PackageId>DotNetElements.DebugDraw.Silk.NET</PackageId>
21+
<Title>DotNetElements - DebugDraw Silk.NET backend</Title>
22+
<Description>Silk.NET backend for DotNetElements.DebugDraw</Description>
23+
<Authors>Felix-CodingClimber</Authors>
24+
<Copyright>Felix-CodingClimber</Copyright>
25+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
26+
<PackageProjectUrl>https://github.com/Felix-CodingClimber/DebugDraw</PackageProjectUrl>
27+
<RepositoryUrl>https://github.com/Felix-CodingClimber/DebugDraw</RepositoryUrl>
28+
<RepositoryType>git</RepositoryType>
29+
<PackageReadmeFile>README.md</PackageReadmeFile>
30+
<PackageIcon>logo-small-nuget.png</PackageIcon>
31+
</PropertyGroup>
32+
33+
<ItemGroup>
34+
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
35+
<None Include="..\..\brand\logo-small-nuget.png" Pack="true" PackagePath="\" />
36+
</ItemGroup>
1837

1938
</Project>

src/DotNetElements.DebugRenderer/DotNetElements.DebugRenderer.Core.csproj

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,24 @@
1010
<ItemGroup>
1111
<InternalsVisibleTo Include="DotNetElements.DebugRenderer.Tests" />
1212
</ItemGroup>
13+
14+
<PropertyGroup>
15+
<PackageId>DotNetElements.DebugDraw</PackageId>
16+
<Title>DotNetElements - DebugDraw</Title>
17+
<Description>High-performance debug rendering library for .NET and OpenGL</Description>
18+
<Authors>Felix-CodingClimber</Authors>
19+
<Copyright>Felix-CodingClimber</Copyright>
20+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
21+
<PackageProjectUrl>https://github.com/Felix-CodingClimber/DebugDraw</PackageProjectUrl>
22+
<RepositoryUrl>https://github.com/Felix-CodingClimber/DebugDraw</RepositoryUrl>
23+
<RepositoryType>git</RepositoryType>
24+
<PackageReadmeFile>README.md</PackageReadmeFile>
25+
<PackageIcon>logo-small-nuget.png</PackageIcon>
26+
</PropertyGroup>
27+
28+
<ItemGroup>
29+
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
30+
<None Include="..\..\brand\logo-small-nuget.png" Pack="true" PackagePath="\" />
31+
</ItemGroup>
1332

1433
</Project>

0 commit comments

Comments
 (0)