Skip to content

Commit

Permalink
Merged with dev
Browse files Browse the repository at this point in the history
  • Loading branch information
nexus4880 committed Nov 26, 2024
2 parents a0f371f + 49676a9 commit 9f030a9
Show file tree
Hide file tree
Showing 587 changed files with 5,514 additions and 49,998 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/dotnet-format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: .NET Format

on:
push:
branches:
- 'dev'
paths:
- '**.cs'
- '**.yml' # assume ci/cd pipeline changes

jobs:
format:
runs-on: windows-latest

permissions:
contents: write

env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.FUYU_WORKFLOWS }}
ref: ${{ github.head_ref }}

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'

- name: .NET restore
run: dotnet restore --nologo --configfile Nuget.config

- name: .NET clean
run: dotnet clean --nologo

- name: .NET format
run: dotnet format --no-restore

- name: Push changes
run: |
git config user.name "github-actions[bot]"
git config user.email "170472707+github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "[skip CI] CI/CD: format code"
git push
File renamed without changes.
2 changes: 1 addition & 1 deletion Documentation/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Architecture-wise:
- Prevent internal state wherever possible (simplifies multi-threading)
- Write tests for code wherever possible (see `Fuyu.Tests`, includes (de-)serializing data models)

## Fuyu.Backend.EFT.DTO
## Fuyu.Backend.BSG.Models

Data should be translated to:

Expand Down
14 changes: 0 additions & 14 deletions Fuyu.Backend.BSG/DTO/Common/CurrentMaximum.cs

This file was deleted.

14 changes: 0 additions & 14 deletions Fuyu.Backend.BSG/DTO/Common/ResourceKey.cs

This file was deleted.

21 changes: 0 additions & 21 deletions Fuyu.Backend.BSG/DTO/Friends/ChatRoomMember.cs

This file was deleted.

34 changes: 0 additions & 34 deletions Fuyu.Backend.BSG/DTO/Friends/ChatRoomMemberInfo.cs

This file was deleted.

10 changes: 0 additions & 10 deletions Fuyu.Backend.BSG/DTO/Friends/EChatMemberSide.cs

This file was deleted.

32 changes: 0 additions & 32 deletions Fuyu.Backend.BSG/DTO/Hideout/EAreaType.cs

This file was deleted.

8 changes: 0 additions & 8 deletions Fuyu.Backend.BSG/DTO/Items/EItemRotation.cs

This file was deleted.

58 changes: 0 additions & 58 deletions Fuyu.Backend.BSG/DTO/Items/ItemInstance.cs

This file was deleted.

88 changes: 0 additions & 88 deletions Fuyu.Backend.BSG/DTO/Items/ItemUpdatable.cs

This file was deleted.

37 changes: 0 additions & 37 deletions Fuyu.Backend.BSG/DTO/Profiles/Bonusses/EBonusType.cs

This file was deleted.

Loading

0 comments on commit 9f030a9

Please sign in to comment.