Try generic upload
All checks were successful
Build on push / prepare (push) Successful in 19s
Build on push / build (push) Successful in 23s

This commit is contained in:
2026-02-14 17:56:57 +01:00
parent c19921eb85
commit 0332f08194
8 changed files with 190 additions and 51 deletions

View File

@@ -6,29 +6,26 @@
<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>
<!-- Single File Publishing -->
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>full</TrimMode>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.0" />
<PackageReference Include="System.Net.Http.Json" Version="10.0.0" />
</ItemGroup>
</Project>