1.0.0-rc.1-0428

This commit is contained in:
milimoe 2025-04-28 20:58:56 +08:00
parent ddea8ca367
commit 144cdd4ddd
Signed by: milimoe
GPG Key ID: 05D280912DA6C69E
2 changed files with 17 additions and 7 deletions

View File

@ -20,6 +20,11 @@
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> <GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Copyright>Project Redbud and Contributors</Copyright> <Copyright>Project Redbud and Contributors</Copyright>
<PackageId>ProjectRedbud.$(AssemblyName)</PackageId> <PackageId>ProjectRedbud.$(AssemblyName)</PackageId>
<Description>FunGame.Core: A C#.NET library for turn-based games.</Description>
<PackageTags>game;turn-based;server;framework;dotnet;csharp;gamedev</PackageTags>
<PackageReleaseNotes>
- Initial release candidate 1 (1.0.0-rc.1)
</PackageReleaseNotes>
<RepositoryUrl>https://github.com/project-redbud/FunGame-Core</RepositoryUrl> <RepositoryUrl>https://github.com/project-redbud/FunGame-Core</RepositoryUrl>
<PackageProjectUrl>https://github.com/project-redbud</PackageProjectUrl> <PackageProjectUrl>https://github.com/project-redbud</PackageProjectUrl>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression> <PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
@ -27,7 +32,6 @@
<PackageReadmeFile>README.md</PackageReadmeFile> <PackageReadmeFile>README.md</PackageReadmeFile>
<VersionPrefix>1.0.0-rc.1</VersionPrefix> <VersionPrefix>1.0.0-rc.1</VersionPrefix>
<VersionSuffix Condition="'$(VersionSuffix)' == ''">$([System.DateTime]::Now.ToString("MMdd"))</VersionSuffix> <VersionSuffix Condition="'$(VersionSuffix)' == ''">$([System.DateTime]::Now.ToString("MMdd"))</VersionSuffix>
<Version>$(VersionPrefix)</Version>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

View File

@ -9,20 +9,26 @@
## 安装 ## 安装
- [NuGet](https://www.nuget.org/packages/ProjectRedbud.FunGame.Core/)
```
dotnet add package ProjectRedbud.FunGame.Core --version 1.0.0-rc.1-0428
```
- 在 [Release](https://github.com/project-redbud/FunGame-Core/releases) 页面中下载最新发布版本。
- 克隆本仓库。 - 克隆本仓库。
```powershell ```powershell
git clone https://github.com/project-redbud/FunGame-Core.git git clone https://github.com/project-redbud/FunGame-Core.git
``` ```
- 克隆本仓库的 `latest` 分支。 - 克隆本仓库的 `latest` 分支,此分支为开发版本的最新编译 DLL
```powershell ```powershell
git clone -b latest https://github.com/project-redbud/FunGame-Core.git git clone -b latest https://github.com/project-redbud/FunGame-Core.git
``` ```
- 在 [Release](https://github.com/project-redbud/FunGame-Core/releases) 页面中下载最新发布版本。
## 使用 ## 使用
引用 `FunGame.Core.dll` 或者直接引用整个 `FunGame.Core` 项目到你的项目中。 引用 `FunGame.Core.dll` 或者直接引用整个 `FunGame.Core` 项目到你的项目中。