https://github.com/hiradyazdan/prototype_server
Game UDP Relay Server (Initial Prototype)
https://github.com/hiradyazdan/prototype_server
Last synced: 3 months ago
JSON representation
Game UDP Relay Server (Initial Prototype)
- Host: GitHub
- URL: https://github.com/hiradyazdan/prototype_server
- Owner: hiradyazdan
- Created: 2019-03-06T17:29:02.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-11-20T11:38:04.000Z (over 3 years ago)
- Last Synced: 2025-01-15T07:56:20.418Z (5 months ago)
- Language: C#
- Homepage:
- Size: 158 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# prototype_server

## Database
#### Migrations
##### Add
```shell
dotnet ef migrations add [migration name]
```##### Remove
```shell
dotnet ef migrations remove
```##### Apply (Commit)
```shell
dotnet ef database update
```##### Revert
```shell
dotnet ef database update [migration name]
```## Tests
#### Run
```shell
dotnet test /p:AltCover=true /p:AltCoverXmlreport="bin/Debug/netcoreapp2.2/Reports/coverage.xml" /p:AltCoverAssemblyExcludeFilter="NUnit|Specs" /p:AltCoverPathFilter="Libs|Migrations"
```#### Generate Coverage
```shell
dotnet reportgenerator -reports:bin/Debug/netcoreapp2.2/Reports/coverage.xml -targetdir:bin/Debug/netcoreapp2.2/Reports "-reporttypes:Html;Badges"
```###### HTML Spec Report Path
```xpath
bin/Debug/netcoreapp2.2/Reports/specs-report.html
```###### HTML Coverage Report Path
```xpath
bin/Debug/netcoreapp2.2/Reports/index.htm
```