-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Se agrega trabajo realizado, Commits en repositorio personal Martin M…
…ujica (msmujica - ProyectoPokemonIII
- Loading branch information
Showing
723 changed files
with
61,256 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ "$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json", | ||
"settings": { | ||
"documentationRules": { | ||
"companyName": "Universidad Católica del Uruguay", | ||
"copyrightText": "Copyright (c) Programación II. Derechos reservados.", | ||
"headerDecoration": "-----------------------------------------------------------------------", | ||
"documentationCulture": "es-MX" | ||
}, | ||
"orderingRules": { | ||
"usingDirectivesPlacement":"outsideNamespace" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
is_global = true | ||
|
||
; [*.cs] | ||
|
||
dotnet_diagnostic.IDE0090.severity = none | ||
dotnet_diagnostic.CA1024.severity = none | ||
dotnet_diagnostic.CA1303.severity = none | ||
dotnet_diagnostic.CA1623.severity = none | ||
dotnet_diagnostic.SA1623.severity = none | ||
dotnet_diagnostic.CA1303.severity = none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Build, Test & Generate Docs | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
workflow_dispatch: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build-test-generate-docs: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup .NET 8.0 | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 8.0.303 | ||
|
||
- name: Setup Doxygen | ||
run: sudo apt-get install -y doxygen | ||
|
||
- name: Installing dependencies... | ||
run: dotnet restore | ||
|
||
- name: Building... | ||
run: dotnet build | ||
|
||
- name: Running test... | ||
run: dotnet test | ||
|
||
- name: Generating docs... | ||
working-directory: docs | ||
run: doxygen Doxyfile | ||
continue-on-error: false |
Oops, something went wrong.