Skip to content

Commit

Permalink
Import repository with Azure DevOps (#1)
Browse files Browse the repository at this point in the history
* ++ init

* Merged PR 2: Dati Configurazione Modulo commessa backend

Related work items: #204

* ++

* ++

* ++

* ++

* fix config modulo commessa ++

* ++

* ++

* ++

* total ++

* self care ++

* ContrattoQueryHandler ++

* stato commessa ++

* ++ totale

* ++ notifiche digitali

* ++

* Auth Login transient token

Related work items: #199

* Migrations 8 .net core

Related work items: #227

* Auth Endpoints

Related work items: #170

* Gestione dei segreti in Key Vault

Related work items: #228

* Gestione attività lavorazione modulo commessa

Related work items: #229

* Log dati su db

Related work items: #172

* Bug fix mese anno modulo commessa

Bug fix mese anno modulo commessa

* Totali Pdf

Totali Pdf

* Gestione campi stringa in documento con valuta

Related work items: #234

* Gestione multicontratto modulo commessa lista

Related work items: #235

* Log dati ApplicationInsights

Related work items: #174

* Dati Fatturazione Modifica Specifiche

Related work items: #239

* Nonce + Dati Fatturazione

Related work items: #231

* DatiFatturazioneContattoInvalid ++

* DateTime? ++

* Armonizzazione Token MS

Related work items: #238

* Azure AD integration

Related work items: #194

* Log extended

Related work items: #251

* view vModuliCommessa

Related work items: #257

* Excel caption

Related work items: #258

* fix categoria digitale ++

* Notifiche Ente

Related work items: #250

* PagoPA Notifiche

Related work items: #247

* Fix Query Notifiche

Related work items: #259

* Supporto Send Chiudi Send

Related work items: #260

* Merged PR 63: Azure AD csv contestazioni

Related work items: #261

* Recipient Id Missing

Related work items: #262

* Notifiche

Related work items: #263

* Scadenziario Contestazioni

Related work items: #264

* Stato ricerca modulo commessa

Related work items: #265

* Fix chiusa stimata

Related work items: #266

* Excel campi

Related work items: #275

* REL

Related work items: #182

* Bug Fix visualizzazione

Related work items: #291

* Aggiunta campi report notifiche

Related work items: #299

* Institution type

Related work items: #301

* Recap & Conso

Related work items: #289

* Onere Recapitisti Consolidatori

Related work items: #307

* Azure Ad Filtro rec e con

Related work items: #309

* Filtro anonimizzazione Recapitisti e Consolidatori

Related work items: #311

* Modifica Elaborazione dati REL righe Asseverazione

Related work items: #298

* Notifiche Sospese

Related work items: #302

* Ricerca API multipla ragione sociale Modulo Commessa/Dati Fatturazione

Related work items: #315

* 404 Rel Enti

Related work items: #329

* 404

Related work items: #330

* Asseverazione Comuni

Related work items: #327

* Quadratura notifiche

Related work items: #332

* Font pdf footer

Related work items: #334

* Totale > 0 Rel testata email

Related work items: #335

* REL --404 enti

REL --404 enti

* Output Azure Function detect error infra

Related work items: #337

* Gestione lista fatture

Related work items: #342

* Excel grid fatture

Related work items: #345

* Indice Rel Righe

Indice Rel Righe

* Csv rel righe

Related work items: #347

* Csv output

Related work items: #350

* Report fatture

Related work items: #351

* Reports Fatture

Related work items: #352

* Id fattura in report

Related work items: #357

* REL semestrale

Related work items: #363

* Campi mancanti csv enti + azure/AD

Related work items: #407

* ++

* Merged PR 123: chore: Pipeline for syncing GitHub public repo on tag

chore: Pipeline for syncing GitHub public repo on tag

---------

Co-authored-by: Mauro Ghiani <[email protected]>
  • Loading branch information
trossibip and mg-dgsspa authored Jul 18, 2024
1 parent 95f94b7 commit b26a2dc
Show file tree
Hide file tree
Showing 549 changed files with 27,140 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .devops/sync-github.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Automatically sync main branch to GitHub on tag

trigger:
tags:
include:
- '*'

pool:
vmImage: 'ubuntu-22.04'

steps:
- checkout: self
fetchTags: true

- script: |
git remote add github 'https://$(GITHUB_PAT)@$(GITHUB_URL)'
git push github main
git push github $(Build.SourceBranchName)
displayName: 'Sync repository with GitHub'
30 changes: 30 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
**/.classpath
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/azds.yaml
**/bin
**/charts
**/docker-compose*
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
LICENSE
README.md
!**/.gitignore
!.git/HEAD
!.git/config
!.git/packed-refs
!.git/refs/heads/**
65 changes: 65 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

# Don't use tabs for indentation.
[*]
indent_style = space
# (Please don't specify an indent_size here; that has too many unintended consequences.)

[*.cs]
# Instance fields are camelCase and start with _
dotnet_naming_rule.instance_fields_should_be_camel_case.severity = suggestion
dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields
dotnet_naming_rule.instance_fields_should_be_camel_case.style = instance_field_style
dotnet_naming_symbols.instance_fields.applicable_kinds = field
dotnet_naming_style.instance_field_style.capitalization = camel_case
dotnet_naming_style.instance_field_style.required_prefix = _

# IDE0055: Fix formatting
dotnet_diagnostic.IDE0055.severity = none

# Sort using and Import directives with System.* appearing first
dotnet_sort_system_directives_first = true
dotnet_separate_import_directive_groups = false
dotnet_organize_imports = true

# Avoid "this." and "Me." if not necessary
dotnet_style_qualification_for_field = false:refactoring
dotnet_style_qualification_for_property = false:refactoring
dotnet_style_qualification_for_method = false:refactoring
dotnet_style_qualification_for_event = false:refactoring

# Prefer "var" everywhere
csharp_style_var_for_built_in_types = true:suggestion
csharp_style_var_when_type_is_apparent = true:suggestion
csharp_style_var_elsewhere = true:suggestion

# Suggest more modern language features when available
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
csharp_style_inlined_variable_declaration = true:suggestion
csharp_style_throw_expression = true:suggestion
csharp_style_conditional_delegate_call = true:suggestion

# CA1822: Make member static
dotnet_diagnostic.CA1822.severity = none

# IDE0058: Remove unnecessary expression value
dotnet_diagnostic.IDE0058.severity = none

# IDE0059: Unnecessary assignment to a value
dotnet_diagnostic.IDE0059.severity = error

# IDE0035: Remove unreachable code
dotnet_diagnostic.IDE0035.severity = error

# IDE0043: Format string contains invalid placeholder
dotnet_diagnostic.IDE0043.severity = error

dotnet_code_quality.enable_platform_analyzer_on_pre_net5_target = true

# Omnisharp's formatter breaks with unix-style endings
[*.razor]
end_of_line = crlf
11 changes: 11 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Auto detect text files and perform LF normalization
* text=auto eol=lf

*.cs text diff=csharp
*.cshtml text diff=html
*.csx text diff=csharp
*.sln text merge=union
*.csproj text merge=union
*.sh text diff=bash
*.env text
*ockerfile text
Loading

0 comments on commit b26a2dc

Please sign in to comment.