Skip to content

Commit 0915e79

Browse files
authored
Initial commit
0 parents  commit 0915e79

File tree

15 files changed

+3539
-0
lines changed

15 files changed

+3539
-0
lines changed

.analyzers/stylecop.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{ "$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
2+
"settings": {
3+
"documentationRules": {
4+
"companyName": "Universidad Católica del Uruguay",
5+
"copyrightText": "Copyright (c) Programación II. Derechos reservados.",
6+
"headerDecoration": "-----------------------------------------------------------------------",
7+
"documentationCulture": "es-MX"
8+
},
9+
"orderingRules": {
10+
"usingDirectivesPlacement":"outsideNamespace"
11+
}
12+
}
13+
}

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
is_global = true
2+
3+
; [*.cs]
4+
5+
dotnet_diagnostic.IDE0090.severity = none
6+
dotnet_diagnostic.CA1024.severity = none
7+
dotnet_diagnostic.CA1303.severity = none
8+
dotnet_diagnostic.CA1623.severity = none
9+
dotnet_diagnostic.SA1623.severity = none
10+
dotnet_diagnostic.CA1303.severity = none
11+
dotnet_diagnostic.CA1515.severity = none

.github/workflows/dotnet-core.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Build, Test & Generate Docs
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
workflow_dispatch:
9+
branches: [ main ]
10+
11+
jobs:
12+
build-test-generate-docs:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v2
18+
19+
- name: Setup .NET 8.0
20+
uses: actions/setup-dotnet@v1
21+
with:
22+
dotnet-version: 8.0.x
23+
24+
- name: Setup Doxygen
25+
run: sudo apt-get install -y doxygen
26+
27+
- name: Installing dependencies...
28+
run: dotnet restore
29+
30+
- name: Building...
31+
run: dotnet build
32+
33+
- name: Running test...
34+
run: dotnet test
35+
36+
- name: Generating docs...
37+
working-directory: docs
38+
run: doxygen Doxyfile
39+
continue-on-error: false

0 commit comments

Comments
 (0)