Skip to content

Commit

Permalink
Add packages metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBang1112 committed Jul 19, 2024
1 parent b1c23dc commit 674b645
Show file tree
Hide file tree
Showing 4 changed files with 106 additions and 2 deletions.
48 changes: 47 additions & 1 deletion Src/GBX.NET.Tool.CLI/GBX.NET.Tool.CLI.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,58 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>GBX.NET.Tool.CLI</PackageId>
<Version>0.1.0</Version>
<Authors>BigBang1112</Authors>
<Description>CLI implementation for the GBX.NET tool framework using Spectre.Console.</Description>
<Copyright>Copyright (c) 2024 Petr Pivoňka</Copyright>
<PackageProjectUrl>https://github.com/BigBang1112/gbx-net</PackageProjectUrl>
<PackageIcon>logo_icon_outline.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>gbx, tool, cli, console, trackmania, shootmania, maniaplanet, gamebox, net, chunk</PackageTags>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>

<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<LangVersion>12</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsTrimmable>true</IsTrimmable>
<IsAotCompatible>true</IsAotCompatible>

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>

<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>

<GenerateDocumentationFile>false</GenerateDocumentationFile>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>

<ItemGroup>
<None Include="../../logo_icon_outline.png" Pack="true" PackagePath="\" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="ThisAssembly.AssemblyInfo" Version="1.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="ThisAssembly.Git" Version="1.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Spectre.Console" Version="0.49.1" />
</ItemGroup>
Expand Down
6 changes: 6 additions & 0 deletions Src/GBX.NET.Tool.CLI/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# GBX.NET.Tool.CLI

[![NuGet](https://img.shields.io/nuget/vpre/GBX.NET.Tool.CLI?style=for-the-badge&logo=nuget)](https://www.nuget.org/packages/GBX.NET.Tool.CLI/)
[![Discord](https://img.shields.io/discord/1012862402611642448?style=for-the-badge&logo=discord)](https://discord.gg/tECTQcAWC9)

CLI implementation for the GBX.NET tool framework using `Spectre.Console`.
48 changes: 47 additions & 1 deletion Src/GBX.NET.Tool/GBX.NET.Tool.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,58 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>GBX.NET.Tool</PackageId>
<Version>0.1.0</Version>
<Authors>BigBang1112</Authors>
<Description>Base library for creating rich tools for different environments with GBX.NET.</Description>
<Copyright>Copyright (c) 2024 Petr Pivoňka</Copyright>
<PackageProjectUrl>https://github.com/BigBang1112/gbx-net</PackageProjectUrl>
<PackageIcon>logo_icon_outline.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>gbx, tool, trackmania, shootmania, maniaplanet, gamebox, net, chunk</PackageTags>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>

<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<LangVersion>12</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsTrimmable>true</IsTrimmable>
<IsAotCompatible>true</IsAotCompatible>

<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>

<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>

<GenerateDocumentationFile>false</GenerateDocumentationFile>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>

<ItemGroup>
<None Include="../../logo_icon_outline.png" Pack="true" PackagePath="\" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="ThisAssembly.AssemblyInfo" Version="1.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="ThisAssembly.Git" Version="1.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\GBX.NET\GBX.NET.csproj" />
</ItemGroup>
Expand Down
6 changes: 6 additions & 0 deletions Src/GBX.NET.Tool/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# GBX.NET.Tool

[![NuGet](https://img.shields.io/nuget/vpre/GBX.NET.Tool?style=for-the-badge&logo=nuget)](https://www.nuget.org/packages/GBX.NET.Tool/)
[![Discord](https://img.shields.io/discord/1012862402611642448?style=for-the-badge&logo=discord)](https://discord.gg/tECTQcAWC9)

Base library for creating rich tools for different environments with GBX.NET.

0 comments on commit 674b645

Please sign in to comment.