Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yostane/cours-csharp
Cours de C# et .Net
https://github.com/yostane/cours-csharp
csharp dotnet lecture-notes
Last synced: 19 days ago
JSON representation
Cours de C# et .Net
- Host: GitHub
- URL: https://github.com/yostane/cours-csharp
- Owner: yostane
- License: cc-by-4.0
- Created: 2023-09-25T13:30:26.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-21T15:41:52.000Z (25 days ago)
- Last Synced: 2024-10-21T18:57:10.954Z (25 days ago)
- Topics: csharp, dotnet, lecture-notes
- Language: C#
- Homepage: https://yostane.github.io/cours-csharp/
- Size: 2.1 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# Cours de C# (C Sharp)
![ci workflow badge](https://github.com/yostane/cours-csharp/actions/workflows/ci.yml/badge.svg)
## Configuration VSCode
- Créer un venv: `python -m venv venv`
- Utiliser le formateur de "markdownlint"
- settings.json```json
{
"markdownlint.config": {
"default": true,
"MD007": { "indent": 4 }
},
"yaml.schemas": {
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml"
},
"yaml.customTags": [
"!ENV scalar",
"!ENV sequence",
"tag:yaml.org,2002:python/name:materialx.emoji.to_svg",
"tag:yaml.org,2002:python/name:materialx.emoji.twemoji",
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format"
]
}```