Merge branch 'main' of github.com:GameFrameX/GameFrameX.Server

# Conflicts:
#	.github/workflows/sync.yml
This commit is contained in:
AlianBlank 2024-07-29 19:19:36 +08:00
commit a50ea1e479
2 changed files with 30 additions and 0 deletions

25
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: .NET Core
on:
push:
branches: [ gateway]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Publish
uses: brandedoutcast/publish-nuget@v2.5.2
with:
PROJECT_FILE_PATH: GameFrameX.Extension/GameFrameX.Extension.csproj
NUGET_KEY: ${{ secrets.NUGET_API_KEY }}

View File

@ -0,0 +1,5 @@
namespace GameFrameX.NetWork.Messages;
public interface INotifyMessage : IMessage
{
}