Skip to content

Commit 0416f51

Browse files
Merge branch 'main' of github.com:LabinatorSolutions/csharp-cheat-sheet
2 parents 95ce9fb + e0ebe45 commit 0416f51

File tree

2 files changed

+53
-6
lines changed

2 files changed

+53
-6
lines changed

.github/workflows/static.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Simple workflow for deploying static content to GitHub Pages
2+
name: Deploy static content to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
jobs:
25+
# Single deploy job since we're just deploying
26+
deploy:
27+
environment:
28+
name: github-pages
29+
url: ${{ steps.deployment.outputs.page_url }}
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Checkout
33+
uses: actions/checkout@v4
34+
- name: Setup Pages
35+
uses: actions/configure-pages@v5
36+
- name: Upload artifact
37+
uses: actions/upload-pages-artifact@v3
38+
with:
39+
# Upload entire repository
40+
path: '.'
41+
- name: Deploy to GitHub Pages
42+
id: deployment
43+
uses: actions/deploy-pages@v4

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
# C# Learning Resources
1+
# C# Learning Resources & Cheat Sheets
22

33
> By [ConstructG.com](https://constructg.com) – The Ultimate C# Learning Bundle
44
55
This repository contains a collection of comprehensive C# learning resources, cheatsheets, and references designed for developers at all skill levels. Whether you're a beginner learning the basics or an experienced developer looking for a quick reference, you'll find valuable resources here.
66

7+
## Live Preview
8+
9+
> [csharp-kit.constructg.com](https://csharp-kit.constructg.com/)
10+
711
## Available Resources
812

913
| Resource | Description |
@@ -16,10 +20,10 @@ This repository contains a collection of comprehensive C# learning resources, ch
1620

1721
## How to Use These Resources
1822

19-
- **For beginners**: Start with the [C# Concise Reference](./docs/concise-reference.md) to get familiar with the core concepts.
20-
- **For quick lookups**: The [C# Ultimate Cheatsheet](./docs/ultimate-cheatsheet.md) is organized for easy reference.
21-
- **For visual learners**: Check out the [C# Mindmap](./docs/mindmap.html) to see how concepts relate to each other.
22-
- **For in-depth learning**: The [C# Comprehensive Reference](./docs/comprehensive-reference.md) provides detailed explanations of all features.
23+
- **For beginners**: Start with the [C# Concise Reference](https://csharp-kit.constructg.com/docs/concise-reference.md) to get familiar with the core concepts.
24+
- **For quick lookups**: The [C# Ultimate Cheatsheet](https://csharp-kit.constructg.com/docs/ultimate-cheatsheet.md) is organized for easy reference.
25+
- **For visual learners**: Check out the [C# Mindmap](https://csharp-kit.constructg.com/docs/mindmap.html) to see how concepts relate to each other.
26+
- **For in-depth learning**: The [C# Comprehensive Reference](https://csharp-kit.constructg.com/docs/comprehensive-reference.md) provides detailed explanations of all features.
2327

2428
## Repository Structure
2529

@@ -51,4 +55,4 @@ This project is licensed under the GNU Affero General Public License v3.0 - see
5155

5256
## About ConstructG
5357

54-
[ConstructG.com](https://constructg.com) is an online game development academy that offers comprehensive courses on C#, Data Structures & Algorithms, Avalonia UI, and Unity game development.
58+
[ConstructG.com](https://constructg.com) is an online game development academy that offers comprehensive courses on C#, Data Structures & Algorithms, Avalonia UI, and Unity game development.

0 commit comments

Comments
 (0)