Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/compose.develop.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
dev:
image: mcr.microsoft.com/devcontainers/dotnet:9.0-bookworm
image: mcr.microsoft.com/devcontainers/dotnet:10.0
networks:
- interconnect
tty: true
Expand Down
55 changes: 34 additions & 21 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,41 +1,46 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

## All files
# All files
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true

## Markdown files
# Markdown files
[*.md]
indent_size = 2
indent_style = space
trim_trailing_whitespace = false

## Web development files
# Web development files
[*.{js,jsx,ts,tsx,css,html,yml,yaml,json}]
indent_size = 2
indent_style = space

## Project files
[*.{sln,csproj,proj}]
# Project files
[*.{sln,slnx,csproj,proj}]
charset = utf-8-bom
indent_size = 2
indent_style = space
end_of_line = crlf

## XML config files
# XML config files
[*.{config,resx,nuspec,props,targets}]
indent_size = 2
indent_style = space

## Xml files
# Xml files
[*.xml]
indent_size = 2
indent_style = space

# C# files
[*.cs]
indent_size = 4
indent_style = space


#### Core EditorConfig Options ####
Expand All @@ -45,14 +50,15 @@ indent_size = 4
tab_width = 4

# New line preferences
## insert_final_newline = false
# insert_final_newline = false
insert_final_newline = true

#### .NET Coding Conventions ####
[*.{cs,vb}]

# Organize usings
## dotnet_separate_import_directive_groups = true
# customized:
# dotnet_separate_import_directive_groups = true
dotnet_separate_import_directive_groups = false
dotnet_sort_system_directives_first = true
file_header_template = unset
Expand Down Expand Up @@ -265,8 +271,8 @@ dotnet_naming_rule.private_fields_should_be__camelcase.style = _camelcase

dotnet_naming_rule.private_static_fields_should_be_s_camelcase.severity = suggestion
dotnet_naming_rule.private_static_fields_should_be_s_camelcase.symbols = private_static_fields
## dotnet_naming_rule.private_static_fields_should_be_s_camelcase.style = s_camelcase
dotnet_naming_rule.private_static_fields_should_be_s_camelcase.style = camelcase
# dotnet_naming_rule.private_static_fields_should_be_s_camelcase.style = s_camelcase
dotnet_naming_rule.private_static_fields_should_be_s_camelcase.style = _camelcase

dotnet_naming_rule.public_constant_fields_should_be_pascalcase.severity = suggestion
dotnet_naming_rule.public_constant_fields_should_be_pascalcase.symbols = public_constant_fields
Expand Down Expand Up @@ -374,7 +380,6 @@ dotnet_naming_symbols.local_functions.applicable_kinds = local_function
dotnet_naming_symbols.local_functions.applicable_accessibilities = *
dotnet_naming_symbols.local_functions.required_modifiers =


# Naming styles

dotnet_naming_style.pascalcase.required_prefix =
Expand Down Expand Up @@ -413,30 +418,38 @@ dotnet_naming_style.constant_case.required_suffix =
dotnet_naming_style.constant_case.word_separator = _
dotnet_naming_style.constant_case.capitalization = all_upper

## #### .NET Coding Severity ####
#> #### .NET Coding Severity ####

# Default severity for analyzer diagnostics with category 'Style'
dotnet_analyzer_diagnostic.category-Style.severity = silent

[src/**/*.{cs,vb}]

## IDE0055: Fix Formatting
#> IDE0055: Fix Formatting
dotnet_diagnostic.IDE0055.severity = warning

## IDE0040: Accessibility modifiers required
#> IDE0040: Accessibility modifiers required
dotnet_diagnostic.IDE0040.severity = warning

## IDE0051: Remove unused private member
#> IDE0051: Remove unused private member
dotnet_diagnostic.IDE0051.severity = warning

## IDE0052: Remove unread private member
#> IDE0052: Remove unread private member
dotnet_diagnostic.IDE0052.severity = warning

## IDE0059: Remove unnecessary value assignment
#> IDE0059: Remove unnecessary value assignment
dotnet_diagnostic.IDE0059.severity = warning

## IDE0060: Remove unused parameter
#> IDE0060: Remove unused parameter
dotnet_diagnostic.IDE0060.severity = warning

## IDE0100: Remove unnecessary equality operator
#> IDE0100: Remove unnecessary equality operator
dotnet_diagnostic.IDE0100.severity = warning

## #### .NET Coding Excludes files ####
#> IDE1006: Naming rule violation
dotnet_diagnostic.IDE1006.severity = warning


#> #### .NET Coding Excludes files ####
[src/**/{Migrations}/*.{cs,vb}]
generated_code = true
4 changes: 3 additions & 1 deletion .github/workflows/dotnet-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0.x'
dotnet-version: '10.0.x'
- name: Info
run: dotnet --info

- name: Auth Github
run: dotnet nuget update source github --username suzu-devworks --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/dotnet-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
- uses: actions/checkout@v6
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '8.0.x'
dotnet-version: '10.0.x'
- name: Info
run: dotnet --info

- name: Auth Github
run: dotnet nuget update source github --username suzu-devworks --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
Expand Down
101 changes: 70 additions & 31 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

# User-specific files
*.rsuser
Expand All @@ -23,7 +23,6 @@ mono_crash.*
[Rr]eleases/
x64/
x86/
[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
Expand Down Expand Up @@ -62,9 +61,6 @@ project.lock.json
project.fragment.lock.json
artifacts/

# ASP.NET Scaffolding
ScaffoldingReadMe.txt

# StyleCop
StyleCopReport.xml

Expand All @@ -82,8 +78,6 @@ StyleCopReport.xml
*.pgc
*.pgd
*.rsp
# but not Directory.Build.rsp, as it configures directory-level build defaults
!Directory.Build.rsp
*.sbr
*.tlb
*.tli
Expand All @@ -92,7 +86,6 @@ StyleCopReport.xml
*.tmp_proj
*_wpftmp.csproj
*.log
*.tlog
*.vspscc
*.vssscc
.builds
Expand Down Expand Up @@ -145,9 +138,7 @@ _TeamCity*
!.axoCover/settings.json

# Coverlet is a free, cross platform Code Coverage Tool
coverage*.json
coverage*.xml
coverage*.info
coverage*[.json, .xml, .info]

# Visual Studio code coverage results
*.coverage
Expand Down Expand Up @@ -296,17 +287,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
Expand Down Expand Up @@ -363,9 +343,6 @@ ASALocalRun/
# Local History for Visual Studio
.localhistory/

# Visual Studio History (VSHistory) files
.vshistory/

# BeatPulse healthcheck temp database
healthchecksdb

Expand All @@ -375,8 +352,9 @@ MigrationBackup/
# Ionide (cross platform F# VS Code tools) working folder
.ionide/

# Fody - auto-generated XML schema
FodyWeavers.xsd
##
## Visual studio for Mac
##

# VS Code files for those working on multiple tools
.vscode/*
Expand All @@ -387,17 +365,78 @@ FodyWeavers.xsd
!.vscode/cspell.json
*.code-workspace

# Local History for Visual Studio Code
.history/

# Windows Installer files from build outputs
# globs
Makefile.in
*.userprefs
*.usertasks
config.make
config.status
aclocal.m4
install-sh
autom4te.cache/
*.tar.gz
tarballs/
test-results/

# Mac bundle stuff
*.dmg
*.app

# content below from: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# content below from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
# Windows thumbnail cache files
Thumbs.db
ehthumbs.db
ehthumbs_vista.db

# Dump file
*.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msix
*.msm
*.msp

# Windows shortcuts
*.lnk

# JetBrains Rider
.idea/
*.sln.iml

## User Define
Expand Down
1 change: 1 addition & 0 deletions .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"dictionaries": [],
"words": [
"appsettings",
"Autofac",
"xunit"
],
"ignoreWords": [],
Expand Down
Loading