Added package cleanup project

This commit is contained in:
2026-02-14 16:39:25 +01:00
parent 26ee3dfb44
commit 0b0890a07d
6 changed files with 138 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");

View File

@@ -0,0 +1,30 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>sh.actions.package_cleanup</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- NuGet Package Information -->
<PackAsTool>true</PackAsTool>
<ToolCommandName>package-cleanup</ToolCommandName>
<PackageId>sh.actions.package-cleanup</PackageId>
<Version Condition="'$(Version)' == ''">0.0.1</Version>
<Title>sh-edraft gitea package cleanup</Title>
<Description>Tool to cleanup gitea packages</Description>
<Authors>edraft</Authors>
<PackageProjectUrl>https://git.sh-edraft.de/sh-edraft.de/actions</PackageProjectUrl>
<RepositoryUrl>https://git.sh-edraft.de/sh-edraft.de/actions</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
</Project>