Skip to content
This repository has been archived by the owner on May 21, 2024. It is now read-only.

Add walkthrough #100

Merged
merged 10 commits into from
Jul 19, 2022
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
1 change: 1 addition & 0 deletions media/build-an-app.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
![A screenshot of the Microsoft learn dotnet website.](learn-dotnet-website.png)
Binary file added media/csharp-notebooks.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions media/install-sdk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## Install .NET SDK

If you don't have .NET SDK installed on your machine, you can install it by clicking on __Install .NET SDK__.

To verify it's installed, [create a new terminal](command:workbench.action.terminal.new) and try running the following command:

```
dotnet --version
```

You should see the version of the .NET SDK that you have installed.
1 change: 0 additions & 1 deletion media/keyboard-shortcuts.md

This file was deleted.

3 changes: 0 additions & 3 deletions media/new-to-vscode.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
![A screenshot of the VS Code introductory videos website.](vscode-intro-videos.png)

New to Visual Studio Code? Take a video tour! Watch our introductory videos on the VS Code documentation.

External Link: https://aka.ms/vscode-getting-started-video
6 changes: 1 addition & 5 deletions media/notebooks.md
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
Open the command palette using the keyboard shortcut “Ctrl+Shift+P”. Click [here](command:workbench.action.showCommands) to open the command palette.

Here, you can view different possible actions. To make a new notebook, select ".NET Interactive: Create new blank notebook”. Open an existing notebook by selecting ".NET Interactive: Open Notebook” then choosing the notebook from your files.

Click [here](command:dotnet.gettingStarted) to open getting started notebook.
![A gif of using the command palette](search.gif)
5 changes: 0 additions & 5 deletions media/sample-apps.md

This file was deleted.

Binary file added media/search.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 1 addition & 5 deletions media/where-to-start.md
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
![A screenshot of the Microsoft learn dotnet website.](learn-dotnet-website.png)

Not sure where to start learning how to code and build apps? Learn how to build mobile apps, web apps, and more with the self-guided tutorials on Microsoft Learn.

External Link: https://docs.microsoft.com/learn/dotnet/
![A gif showing how to find csharp notebooks](csharp-notebooks.gif)
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 19 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@
"workspaceContains:**/*.csx",
"workspaceContains:**/*.cake",
"onCommand:dotnet.gettingStarted",
"onWebviewPanel:dotnet.gettingStarted"
"onWebviewPanel:dotnet.gettingStarted",
"onWalkthrough:vscode-dotnet-pack-getting-started"
],
"contributes": {
"commands": [
Expand Down Expand Up @@ -105,43 +106,44 @@
"id": "vscode-dotnet-pack-getting-started",
"title": "Getting Started with .NET",
"description": "A walkthrough to help you get the most out of the .NET tooling.",
"when":"true",
"steps": [
{
"id": "vscode-dotnet-pack-getting-started-notebooks",
"title": "Notebooks",
"description": "Search to make or import a notebook.",
"id": "vscode-dotnet-sdk",
"title": "Get the .NET SDK",
"description": "The .NET Extension Pack requires the .NET SDK to be installed.\n[Install .NET SDK](https://aka.ms/dotnet-extensionpack-sdk)",
"media": {
"markdown": "media/notebooks.md"
"markdown": "media/install-sdk.md"
}
},
{
"id": "vscode-dotnet-pack-getting-started-keyboard-shortcuts",
"title": "Keyboard Shortcuts",
"description": "Need to get something done fast? Use a keyboard shortcut.",
"id": "vscode-dotnet-pack-getting-started-sample-apps",
"title": "Where to Start",
"description": "Browse the beginner C# notebooks to learn to code with C#. Click on the button to find our repository of beginner C# content. Simply click on the Notebook Link to open in Visual Studio Code.\n[Beginner C# Notebooks](https://aka.ms/dotnet-extensionpack-csharp-notebooks)",
"media": {
"markdown": "media/keyboard-shortcuts.md"
"markdown": "media/where-to-start.md"
}
},
{
"id": "vscode-dotnet-pack-getting-started-where-to-start",
"title": "Where to Start",
"description": "Not sure where to start learning how to code and build apps? ",
"title": "Build an App",
"description": "Not sure where to start learning how to code and build apps? Microsoft Learn has courses to teach you how to build web apps, mobile apps, and more! \n[Go to Microsoft Learn](https://aka.ms/dotnet-extensionpack-mslearn)",
"media": {
"markdown": "media/where-to-start.md"
"markdown": "media/build-an-app.md"
}
},
{
"id": "vscode-dotnet-pack-getting-started-sample-apps",
"title": "Sample Apps",
"description": "GitHub has sample code for whether you want to brush up or learn something new.",
"id": "vscode-dotnet-pack-getting-started-notebooks",
"title": "Interactive Notebooks",
"description": "With the .NET Extension Pack, you can use interactive notebooks to experiment with code! Create a new notebook by opening the command palette and selecting '.NET Interactive: Create new blank notebook'. \n[Open Command Palette](command:workbench.action.showCommands)",
"media": {
"markdown": "media/sample-apps.md"
"markdown": "media/notebooks.md"
}
},
{
"id": "vscode-dotnet-pack-getting-started-new-to-vscode",
"title": "New to Visual Studio Code",
"description": "Take a video tour!",
"description": "New to Visual Studio Code? Take a video tour! Watch our introductory videos on the VS Code documentation.\n[Go to Video](https://aka.ms/dotnet-extensionpack-vscode)",
"media": {
"markdown": "media/new-to-vscode.md"
}
Expand Down