Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
ef3cd7c6b5
2 changed files with 28 additions and 0 deletions
26
.github/workflows/dotnet-build-test.yml
vendored
Normal file
26
.github/workflows/dotnet-build-test.yml
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
name: ci build and test
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "master" ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ "master" ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: windows-latest
|
||||||
|
env:
|
||||||
|
Solution_Name: CharacterRecordsGenerator.sln
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Add MSBuild to path
|
||||||
|
uses: microsoft/setup-msbuild@v1.1
|
||||||
|
- name: Setup NuGet
|
||||||
|
uses: NuGet/setup-nuget@v1
|
||||||
|
- name: Restore nuget
|
||||||
|
run: nuget restore $env:Solution_Name
|
||||||
|
- name: Build
|
||||||
|
run: msbuild $env:Solution_Name /t:Rebuild -property:Configuration=Release
|
||||||
|
- name: Unit tests
|
||||||
|
run: dotnet test --no-build --verbosity normal
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
# Character Records Generator (for Aurora)
|
# Character Records Generator (for Aurora)
|
||||||
|
|
||||||
|
[Find the latest release here](https://github.com/Llywelwyn/character-records-generator/releases/tag/v2.0)
|
||||||
|
|
||||||
A tool for making setting up employment, medical, and security records a little easier on Aurora, forked from the AuroraRecordGenerator originally created by Lohikar.
|
A tool for making setting up employment, medical, and security records a little easier on Aurora, forked from the AuroraRecordGenerator originally created by Lohikar.
|
||||||
|
|
||||||
This modification of the records generator has been made up to date with all of the latest changes to the server, and to better match the example records present on [Aurora's Guide to Character Records](https://wiki.aurorastation.org/index.php?title=Guide_to_Character_Records). Some redundant fields have been removed, and nearly all of the fields are now optional rather than being listed as 'not specified', hopefully to make filling out the records less of a chore if you want to do it piece by piece as you play.
|
This modification of the records generator has been made up to date with all of the latest changes to the server, and to better match the example records present on [Aurora's Guide to Character Records](https://wiki.aurorastation.org/index.php?title=Guide_to_Character_Records). Some redundant fields have been removed, and nearly all of the fields are now optional rather than being listed as 'not specified', hopefully to make filling out the records less of a chore if you want to do it piece by piece as you play.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue