add: package README

Publish packages to nuget.org.
This commit is contained in:
jackfiled 2024-03-03 23:49:02 +08:00
parent 5d9ada9939
commit 257f5d94ee
4 changed files with 18 additions and 4 deletions

5
YaeBlog.Core/README.md Normal file
View File

@ -0,0 +1,5 @@
# YaeBlog.Core
A blog generation totally based on Blazor.
You can using this to create your blog all in .NET stack!

View File

@ -11,6 +11,8 @@
<Version>0.1.0</Version>
<Authors>Ricardo Ren</Authors>
<Company>Ricardo Ren</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
@ -33,6 +35,7 @@
<ItemGroup>
<None Include="../.gitignore" />
<None Include="../.editorconfig" />
<None Include="./README.md" Pack="true" PackagePath="/"/>
</ItemGroup>
<ItemGroup>

View File

@ -0,0 +1,3 @@
# YaeBlog.Theme.FluentUI
A fluent design style theme for YaeBlog!

View File

@ -11,6 +11,8 @@
<Version>0.1.1</Version>
<Authors>Ricardo Ren</Authors>
<Company>Ricardo Ren</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
@ -26,8 +28,9 @@
</ItemGroup>
<ItemGroup>
<Content Remove="**/.gitattributes"></Content>
<None Remove="**/.gitattributes"></None>
<Content Remove="**/.gitattributes"/>
<None Remove="**/.gitattributes"/>
<None Include="README.md" Pack="true" PackagePath="/"/>
</ItemGroup>
</Project>