Compare commits

..

No commits in common. 'master' and 'tpBlazor' have entirely different histories.

38
.gitignore vendored

@ -1,4 +1,3 @@
# ---> VisualStudio
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
@ -92,7 +91,6 @@ StyleCopReport.xml
*.tmp_proj
*_wpftmp.csproj
*.log
*.tlog
*.vspscc
*.vssscc
.builds
@ -296,17 +294,6 @@ node_modules/
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
*.vbp
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
*.dsw
*.dsp
# Visual Studio 6 technical files
*.ncb
*.aps
# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
@ -363,9 +350,6 @@ ASALocalRun/
# Local History for Visual Studio
.localhistory/
# Visual Studio History (VSHistory) files
.vshistory/
# BeatPulse healthcheck temp database
healthchecksdb
@ -377,25 +361,3 @@ MigrationBackup/
# Fody - auto-generated XML schema
FodyWeavers.xsd
# VS Code files for those working on multiple tools
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
# Local History for Visual Studio Code
.history/
# Windows Installer files from build outputs
*.cab
*.msi
*.msix
*.msm
*.msp
# JetBrains Rider
*.sln.iml

@ -7,7 +7,6 @@ trigger:
- push
steps:
# build job
- name: build
image: mcr.microsoft.com/dotnet/sdk:6.0
commands:
@ -15,7 +14,6 @@ steps:
- dotnet restore BlazorTp1.sln
- dotnet build BlazorTp1.sln -c Release --no-restore
# test job
- name: tests
image: mcr.microsoft.com/dotnet/sdk:6.0
commands:
@ -24,7 +22,6 @@ steps:
- dotnet test BlazorTp1.sln --no-restore
depends_on: [build]
# analysis job
- name: code-analysis
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dronesonarplugin-dotnet6
commands:
@ -45,7 +42,6 @@ steps:
from_secret: SECRET_SONAR_LOGIN
depends_on: [tests]
# cd job
- name: docker-build
image: plugins/docker
settings:
@ -61,7 +57,6 @@ steps:
branch:
- master
# container deployement
- name: deploy-container
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-dockerproxy-clientdrone:latest
environment:
@ -69,21 +64,3 @@ steps:
CONTAINERNAME: blazor_container
COMMAND: create
OVERWRITE: true
# documentation job
- name: generate-and-deploy-docs
image: hub.codefirst.iut.uca.fr/thomas.bellembois/codefirst-docdeployer
failure: ignore
volumes:
- name: docs
path: /docs
commands:
- /entrypoint.sh
when:
branch:
- master
depends_on: [ build ]
volumes:
- name: docs
temp: {}

@ -1,2 +0,0 @@
# Tp_blazor
Loading…
Cancel
Save