You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blazor/common/deployment/publish.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
layout: post
3
3
title: Publish and Deploy in Blazor | AOT | Syncfusion
4
-
description: Learn here all about publish the Blazor application with Syncfusion Blazor Components and much more.
4
+
description: Learn how to publish and deploy Blazor Web App, Blazor WASM, Blazor Server Apps with Syncfusion Blazor components, including self-contained deployment and AOT.
Copy file name to clipboardExpand all lines: blazor/installation/install-nuget-packages.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ The NuGet **Package Manager UI** allows you to search, install, uninstall, and u
28
28
29
29
2. The Manage NuGet Packages window will open. Navigate to the **Browse** tab, then search for the Syncfusion<supstyle="font-size:70%">®</sup> Blazor NuGet packages using a term like **"Syncfusion<supstyle="font-size:70%">®</sup> Blazor"** and select the appropriate Syncfusion<supstyle="font-size:70%">®</sup> Blazor NuGet package for your development.
30
30
31
-
N> The nuget.org package source is selected by default. If Visual Studio does not have nuget.org configured, follow the instructions in the [Microsoft documents](https://learn.microsoft.com/en-us/nuget/consume-packages/install-use-packages-visual-studio#package-sources) to set up the nuget.org feed URL.
31
+
N> The [nuget.org]([nuget.org](https://api.nuget.org/v3/index.json)) package source is selected by default. If Visual Studio does not have nuget.org configured, follow the instructions in the [Microsoft documents](https://learn.microsoft.com/en-us/nuget/consume-packages/install-use-packages-visual-studio#package-sources) to set up the nuget.org feed URL.
32
32
33
33

Copy file name to clipboardExpand all lines: blazor/listbox/getting-started.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -193,4 +193,4 @@ N> `TValue` specifies the value type of the data source for type inference. It i
193
193
194
194
*[Getting Started with Syncfusion<supstyle="font-size:70%">®</sup> Blazor for Client-Side in .NET Core CLI](https://blazor.syncfusion.com/documentation/getting-started/blazor-webassembly-dotnet-cli)
195
195
*[Getting Started with Syncfusion<supstyle="font-size:70%">®</sup> Blazor for Server-Side in Visual Studio](https://blazor.syncfusion.com/documentation/getting-started/blazor-server-side-visual-studio)
196
-
*[Getting Started with Syncfusion<supstyle="font-size:70%">®</sup> Blazor for Server-Side in .NET Core CLI](https://blazor.syncfusion.com/documentation/getting-started/blazor-server-side-dotnet-cli)
196
+
*[Getting Started with Syncfusion<supstyle="font-size:70%">®</sup> Blazor for Server-Side in .NET Core CLI](https://blazor.syncfusion.com/documentation/getting-started/blazor-web-app)
Copy file name to clipboardExpand all lines: blazor/multicolumn-combobox/getting-started.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -231,4 +231,4 @@ By default, the popup list automatically matches the width of the MultiColumn Co
231
231
232
232
*[Getting Started with Syncfusion<supstyle="font-size:70%">®</sup> Blazor for Client-Side in .NET Core CLI](../getting-started/blazor-webassembly-dotnet-cli)
233
233
*[Getting Started with Syncfusion<supstyle="font-size:70%">®</sup> Blazor for Server-side in Visual Studio](../getting-started/blazor-server-side-visual-studio)
234
-
*[Getting Started with Syncfusion<supstyle="font-size:70%">®</sup> Blazor for Server-Side in .NET Core CLI](../getting-started/blazor-server-side-dotnet-cli)
234
+
*[Getting Started with Syncfusion<supstyle="font-size:70%">®</sup> Blazor for Server-Side in .NET Core CLI](../getting-started/blazor-web-app)
Copy file name to clipboardExpand all lines: blazor/pivot-table/olap.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ documentation: ug
14
14
15
15
## Getting started
16
16
17
-
This section explains how to create a simple [Blazor Pivot Table](https://www.syncfusion.com/blazor-components/blazor-pivot-table) using an OLAP data source. For details on setting up a Blazor application, refer to the [Getting started with Syncfusion<supstyle="font-size:70%">®</sup> Blazor for client-side in Visual Studio 2022](https://blazor.syncfusion.com/documentation/getting-started) guide, which covers the initial setup and configuration steps.
17
+
This section explains how to create a simple [Blazor Pivot Table](https://www.syncfusion.com/blazor-components/blazor-pivot-table) using an OLAP data source. For details on setting up a Blazor application, refer to the [Getting started with Syncfusion<supstyle="font-size:70%">®</sup> Blazor for client-side in Visual Studio 2022](https://blazor.syncfusion.com/documentation/getting-started/blazor-web-app) guide, which covers the initial setup and configuration steps.
18
18
19
19
### Adding the Syncfusion<supstyle="font-size:70%">®</sup> Blazor component package
Copy file name to clipboardExpand all lines: blazor/smart-paste/claude-service.md
+31-12Lines changed: 31 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,9 @@ Create a service class to manage interactions with the Claude API, including aut
28
28
2. Add a new file named `ClaudeAIService.cs` in the `Services` folder.
29
29
3. Implement the service as shown below, storing the API key securely in a configuration file or environment variable (e.g., `appsettings.json`).
30
30
31
-
```csharp
31
+
{% tabs %}
32
+
{% highlight c# tabtitle="ClaudeAIService.cs" %}
33
+
32
34
using System.Net;
33
35
using System.Text;
34
36
using System.Text.Json;
@@ -93,7 +95,9 @@ public class ClaudeAIService
93
95
}
94
96
}
95
97
}
96
-
```
98
+
99
+
{% endhighlight %}
100
+
{% endtabs %}
97
101
98
102
N> Store the Claude API key in `appsettings.json` (e.g., `{ "Claude": { "ApiKey": "your-api-key" } }`) or as an environment variable to ensure security. Verify the `anthropic-version` header in [Claude API Documentation](https://docs.anthropic.com/claude/docs) for the latest version.
99
103
@@ -104,7 +108,9 @@ Define C# classes to match the Claude API’s JSON request and response format.
104
108
1. Create a new file named `ClaudeModels.cs` in the `Services` folder.
105
109
2. Add the following model classes:
106
110
107
-
```csharp
111
+
{% tabs %}
112
+
{% highlight c# tabtitle="ClaudeModels.cs" %}
113
+
108
114
public class ClaudeChatRequest
109
115
{
110
116
public string Model { get; set; }
@@ -128,7 +134,9 @@ public class ClaudeContentBlock
128
134
{
129
135
public string Text { get; set; }
130
136
}
131
-
```
137
+
138
+
{% endhighlight %}
139
+
{% endtabs %}
132
140
133
141
## Create a Custom AI Service
134
142
@@ -137,7 +145,9 @@ Implement the `IChatInferenceService` interface to connect the Smart Paste Butto
137
145
1. Create a new file named `ClaudeInferenceService.cs` in the `Services` folder.
@@ -234,7 +252,9 @@ Add the Smart Paste Button to a form in the **~/Pages/Home.razor** file to test
234
252
public string Address { get; set; }
235
253
}
236
254
}
237
-
```
255
+
256
+
{% endhighlight %}
257
+
{% endtabs %}
238
258
239
259
N> Ensure the [Syncfusion Blazor DataForm](https://blazor.syncfusion.com/documentation/data-form/getting-started-with-web-app) package is installed for form integration.
240
260
@@ -260,5 +280,4 @@ If the Claude AI integration does not work, try the following:
260
280
## See Also
261
281
262
282
-[Getting Started with Syncfusion Blazor Smart Paste Button in Blazor Web App](https://blazor.syncfusion.com/documentation/smart-paste/getting-started-webapp)
Copy file name to clipboardExpand all lines: blazor/toast/getting-started-webapp.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,7 +107,7 @@ Register the Syncfusion<sup style="font-size:70%">®</sup> Blazor service in
107
107
If the **Interactive Render Mode** is set to `WebAssembly` or `Auto`, register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor service in both Program.cs files (Server and Client).
If the **Interactive Render Mode** is set to `Server`, the project contains a single **~/Program.cs** file. In this case, register the Syncfusion<supstyle="font-size:70%">®</sup> Blazor service only in that file.
Copy file name to clipboardExpand all lines: blazor/visual-studio-code-integration/upgrade-project.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
layout: post
3
3
title: Upgrade a project to the latest version | Syncfusion
4
-
description: Learn here about how to upgrade a project to the latest version using the Syncfusion Blazor extension for Visual Studio Code. Explore to more details.
4
+
description: Learn here about how to upgrade the project to the latest version using the Syncfusion Blazor extension for Visual Studio Code. Explore to more details
0 commit comments