Skip to content

Commit ce98f58

Browse files
Change code snippets to use four backticks (#1955)
* Initial plan * Change code snippets to use four backticks Co-authored-by: petar-i-todorov <109748926+petar-i-todorov@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: petar-i-todorov <109748926+petar-i-todorov@users.noreply.github.com>
1 parent 397c84f commit ce98f58

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

ai-coding-assistant/mcp-server-as-a-nuget.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ Additional requirements:
4343

4444
Install the MCP server as a local tool in your solution root (or another chosen path):
4545

46-
```powershell
46+
````powershell
4747
dotnet tool install -g Telerik.Reporting.MCP
48-
```
48+
````
4949

5050
If updating:
5151

52-
```powershell
52+
````powershell
5353
dotnet tool update -g Telerik.Reporting.MCP
54-
```
54+
````
5555

5656
These commands install/update the Telerik Reporting MCP [dotnet tool](https://learn.microsoft.com/en-us/dotnet/core/tools/global-tools) globally. Global tools are installed in the following directories by default when you specify the **-g** or **--global** option:
5757

@@ -68,7 +68,7 @@ No manual install step is needed. The `dnx` command will download and execute th
6868

6969
Add a `.mcp.json` file to your solution root (or to `%USERPROFILE%` for global usage):
7070

71-
```json
71+
````json
7272
{
7373
"servers": {
7474
"telerik-reporting-assistant": {
@@ -81,21 +81,21 @@ Add a `.mcp.json` file to your solution root (or to `%USERPROFILE%` for global u
8181
}
8282
}
8383
}
84-
```
84+
````
8585

8686
If you prefer embedding the license string directly:
8787

88-
```json
88+
````json
8989
"env": {
9090
"TELERIK_LICENSE": "YOUR_LICENSE_KEY"
9191
}
92-
```
92+
````
9393

9494
### .NET 10 Configuration (`.mcp.json`)
9595

9696
Use these settings when configuring the server in your MCP client:
9797

98-
```json
98+
````json
9999
{
100100
"servers": {
101101
"telerik-reporting-assistant": {
@@ -111,7 +111,7 @@ Use these settings when configuring the server in your MCP client:
111111
}
112112
}
113113
}
114-
```
114+
````
115115

116116

117117
You may substitute `TELERIK_LICENSE` instead of `TELERIK_LICENSE_PATH` (*see [License Configuration](#license-configuration) section below for details and recommendations*). The `inputs` array is optional and not required for the current functionality.
@@ -142,23 +142,23 @@ Add your [Telerik license key]({%slug license-key%}) using one of these options
142142

143143
__Option 1: License File Path (Recommended)__
144144

145-
```json
145+
````json
146146
"env": {
147147
"TELERIK_LICENSE_PATH": "THE_PATH_TO_YOUR_LICENSE_FILE"
148148
}
149-
```
149+
````
150150

151151
The `THE_PATH_TO_YOUR_LICENSE_FILE` should point to the `telerik-license.txt` file, usually in the AppData folder. Often it will look like:
152152

153153
`"TELERIK_LICENSE_PATH": "%appdata%/Telerik/telerik-license.txt"`
154154

155155
__Option 2: Direct License Key__
156156

157-
```json
157+
````json
158158
"env": {
159159
"TELERIK_LICENSE": "YOUR_LICENSE_KEY_HERE"
160160
}
161-
```
161+
````
162162

163163
> Option 1 is recommended unless you're sharing settings across different systems. Remember to [update your license key]({%slug license-key%}#updating-your-license-key) when necessary.
164164

0 commit comments

Comments
 (0)