readme fix
Some checks failed
Build and publish app / Build (push) Failing after 14s
Build and publish app / Pack (push) Has been skipped
Build and publish app / Publish (push) Has been skipped

This commit is contained in:
2026-02-14 23:20:32 +01:00
Unverified
parent fb6a7b33d4
commit 7086b2988e
2 changed files with 12 additions and 2 deletions

View File

@@ -42,8 +42,6 @@ jobs:
id: gitversion
with:
configFilePath: ./.gitea/config/gitversion.yml
- name: Copy README
run: cp ./README.md ./SimpleToolkit.Extensions/README.md
- name: Create NuGet package
run: dotnet pack -c Release -p:Version=${{steps.gitversion.outputs.SemVer}} -p:PackageVersion=${{steps.gitversion.outputs.SemVer}} --output ./
- name: Upload artifact

View File

@@ -12,6 +12,18 @@
<PackageLicenseUrl>https://repos.mateuszskoczek.com/SimpleToolkit/SimpleToolkit.Extensions/src/branch/main/LICENSE</PackageLicenseUrl>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://repos.mateuszskoczek.com/SimpleToolkit/SimpleToolkit.Extensions</RepositoryUrl>
<Description>Set of helpers, class extensions, UI controls used in my other C# projects - Class extensions </Description>
</PropertyGroup>
<ItemGroup>
<None Update="icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>