Skip to content

AzureMentor/try

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Try .NET dotnet bot in space

|| BasicsContribution GuidelinesExperiences || SetupGetting Started || Samples ||

Try_.NET Enabled

Build Status

Basics

What is Try .NET: Try .NET is an interactive documentation generator for .NET Core.

Please Note: At the moment Try .NET only works with C# documentation.

Contribution Guidelines

As we are still in the early stages of our development, we are unable to take any feature PRs at the moment but, we do intend to do this in the future. Please feel free to file any bugs reports under our issues. And if you have any feature suggestion, please submit them under our issues using the community suggestions label.

Experiences

Use Try .NET to create executable C# snippets for your websites or, interactive markdown files that users can run on their machine.

Websites

Microsoft Docs uses Try .NET to create interactive documentation. Users can run and edit code all in the browser. Try NET_online

Interactive .NET documentation

Try .NET enables .NET developers to create interactive markdown files. To make your markdown files interactive, you will need to .NET Core 3.0 SDK, the dotnet try global tool(coming soon) and Visual Studio / VS Code(or any other editor of your choice). interactive_doc

Setup

Before you get can start creating interactive documentation, you will need to install the following:

dotnet tool install --global dotnet-try --version 1.0.19264.11

Updating to the latest version of the tool is easy just run the command below

dotnet tool update -g dotnet-try

Once you have successfully installed dotnet try global tool, enter the command dotnet try -h you will see a list of commands:

Command Purpose
demo Learn how to create Try .NET content with an interactive demo
verify Verify Markdown files in the target directory and its children.

Getting Started

You can get started using either one of the options below.

Option1: dotnet try demo

  • Create a new folder.
  • cd to your new folder.
  • Run command dotnet try demo

Option 2: Starting from scratch.

  1. Go to the terminal and create a folder called mydoc.
  2. cd to the mydoc folder and create a new console app with the following command
   > dotnet new console -o myApp

This will create a console app with the files myApp.csproj and Program.cs.

  1. Open mydocfolder in Visual Studio Code.

  2. Create a file called doc.md. Inside that file, add some text and a code fence:

# My Interactive Document:

```cs --source-file ./myApp/Program.cs --project ./myApp/myApp.csproj
```
  1. Now, navigate back to the mydoc folder and run the following command:
     > dotnet try

You have created your first C# interactive developer experience. You should now be able to run your console app and see the result in the browser.

Option 3: Explore our samples Repo.

About

Try .NET is an interactive documentation generator for .NET Core.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 54.4%
  • TypeScript 36.0%
  • Smalltalk 2.6%
  • PowerShell 2.5%
  • Shell 2.1%
  • CSS 1.4%
  • Other 1.0%