Skip to content

Commit aac692a

Browse files
committed
edit README and CSharp markdown files
1 parent ad2c7d1 commit aac692a

2 files changed

Lines changed: 18 additions & 7 deletions

File tree

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ Built with HTML, CSS, JavaScript, and Prism.js, it provides a quick reference fo
1818

1919
The project emphasizes **mental model translation** — helping developers recognize how the same concepts appear in different environments.
2020

21-
> **Note (as of 2/6/2026)**
22-
> The layout and core comparison structure are in place. Syntax sections are dynamically generated on `compare.html`.
21+
> **Note (as of 3/17/2026)**
22+
> The layout and core comparison structure are in place. Syntax sections are dynamically generated on `index.html`, as are the code blocks on `details.html`.
2323
>
24-
> Full implementation examples (`details.html`) and the `frameworks.html` page are still in progress. The current version focuses on UI structure, styling, and core comparison behavior, with expanded examples planned.
24+
> Full implementation examples on the `frameworks.html` page are still in progress. The current version focuses on UI structure, styling, and core comparison behavior, with expanded examples planned.
2525
2626
---
2727

@@ -143,7 +143,11 @@ This makes the project not just a comparison tool, but also a structured learnin
143143

144144
The languages and frameworks in the forms on all 3 pages are specific to myself, and even they will change over time. If you want to use this project for yourself, then you will most likely want to customize the language choices.
145145

146-
Right now, this project uses HTML + CSS + JavaScript but that may change in the future. If you develope using different languages, then you may not know what you need to change. Here are code blocks you will need to change.
146+
Right now, this project uses HTML + CSS + JavaScript but that may change in the future. If you develope using different languages, then you may not know what you need to change. Here are code blocks you will need to change:
147+
148+
```js
149+
// Coming soon
150+
```
147151

148152
---
149153

docs/csharp.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,13 @@ dotnet --version
2828
# Create a console application
2929
dotnet new console -o ./ProjectName
3030

31-
# Run your application
32-
dotnet run
33-
31+
# Add your code to Program.cs
3432
# Compile a build of your application
3533
dotnet build
3634

35+
# Run your application
36+
dotnet run
37+
3738
# Create gitignore file (482 lines!)
3839
dotnet new gitignore
3940

@@ -49,6 +50,12 @@ dotnet list package
4950

5051
# Clean Build Artifacts
5152
dotnet clean
53+
54+
# Remove a C# project
55+
dotnet sln remove <path-to-csproj>
56+
57+
# Add a C# project
58+
dotnet sln add <path-to-csproj>
5259
```
5360

5461
Commands to know later

0 commit comments

Comments
 (0)