Skip to content

Commit 835f17b

Browse files
Merge pull request #196 from BharatRamsf3693/master
v32.1.19
2 parents 544b736 + 267ba30 commit 835f17b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+166
-74
lines changed

.github/workflows/dotnet.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# This workflow will build a .NET project
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3+
4+
name: .NET
5+
6+
on:
7+
push:
8+
branches: [ "master" ]
9+
pull_request:
10+
branches: [ "master" ]
11+
12+
jobs:
13+
build:
14+
15+
runs-on: windows-latest
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Setup .NET 8
20+
uses: actions/setup-dotnet@v4
21+
with:
22+
dotnet-version: 8.0.x
23+
- name: Setup .NET 9
24+
uses: actions/setup-dotnet@v4
25+
with:
26+
dotnet-version: 9.0.x
27+
- name: Setup .NET 10
28+
uses: actions/setup-dotnet@v4
29+
with:
30+
dotnet-version: 10.0.x
31+
- name: Install Wasm Tools .NET 8
32+
run: dotnet workload install wasm-tools-net8
33+
- name: Install Wasm Tools .NET 9
34+
run: dotnet workload install wasm-tools-net9
35+
- name: Install Wasm Tools .NET 10
36+
run: dotnet workload install wasm-tools
37+
- name: Build Server NET 8
38+
run: dotnet build ./Blazor-Server-Demos/Blazor_Server_Demos_NET8.csproj
39+
- name: Build Server NET 9
40+
run: dotnet build ./Blazor-Server-Demos/Blazor_Server_Demos_NET9.csproj
41+
- name: Build Server NET 10
42+
run: dotnet build ./Blazor-Server-Demos/Blazor_Server_Demos_NET10.csproj
43+
- name: Build WASM NET 8
44+
run: dotnet build ./Blazor-WASM-Demos/Blazor_WASM_Demos/Blazor_WASM_Demos_NET8.csproj
45+
- name: Build WASM NET 9
46+
run: dotnet build ./Blazor-WASM-Demos/Blazor_WASM_Demos/Blazor_WASM_Demos_NET9.csproj
47+
- name: Build WASM NET 10
48+
run: dotnet build ./Blazor-WASM-Demos/Blazor_WASM_Demos/Blazor_WASM_Demos_NET10.csproj

Common/Pages/AISamples/AIAssitView/MultiModelAI.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@
119119
private AssistViewAttachmentSettings attachmentSettings = new AssistViewAttachmentSettings()
120120
{
121121
Enable = true,
122-
SaveUrl = "http://localhost:63028/api/FileUploader/Save",
123-
RemoveUrl = "http://localhost:63028/api/FileUploader/Remove"
122+
SaveUrl = "https://blazor.syncfusion.com/services/production/api/FileUploader/Save",
123+
RemoveUrl = "https://blazor.syncfusion.com/services/production/api/FileUploader/Remove"
124124
};
125125

126126
private string SelectedConvId = "";

Common/Pages/AISamples/Diagram/Helpers/DiagramMenuBar.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<div style="display: none;visibility: hidden;">
5757
<SfUploader @ref="@UploadFiles" Id="UploadFiles" ShowFileList="false" AllowedExtensions="@ExtensionType">
5858
<UploaderEvents Success="@OnUploadSuccess" OnUploadStart="@OnUploadFileSelected"></UploaderEvents>
59-
<UploaderAsyncSettings SaveUrl="http://localhost:63028/api/FileUploader/Save" RemoveUrl="http://localhost:63028/api/FileUploader/Remove"></UploaderAsyncSettings>
59+
<UploaderAsyncSettings SaveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Save" RemoveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Remove"></UploaderAsyncSettings>
6060
</SfUploader>
6161
</div>
6262
<DiagramSaveDialog @ref="@SaveDialogBox"></DiagramSaveDialog>

Common/Pages/AISamples/Diagram/TextToFlowchart.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@
8585
<div style="display: none;visibility: hidden;">
8686
<SfUploader @ref="@uploadFiles" ID="UploadFiles" ShowFileList="false" AllowedExtensions="@ExtensionType">
8787
<UploaderEvents OnUploadStart="@OnUploadFileSelected"></UploaderEvents>
88-
<UploaderAsyncSettings SaveUrl="http://localhost:63028/api/FileUploader/Save"
89-
RemoveUrl="http://localhost:63028/api/FileUploader/Remove"></UploaderAsyncSettings>
88+
<UploaderAsyncSettings SaveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Save"
89+
RemoveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Remove"></UploaderAsyncSettings>
9090
</SfUploader>
9191
</div>
9292
</div>

Common/Pages/AISamples/Diagram/TextToSequence.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@
8080
<div style="display: none;visibility: hidden;">
8181
<SfUploader @ref="@uploadFiles" ID="UploadFiles" ShowFileList="false" AllowedExtensions="@ExtensionType">
8282
<UploaderEvents OnUploadStart="@OnUploadFileSelected"></UploaderEvents>
83-
<UploaderAsyncSettings SaveUrl="http://localhost:63028/api/FileUploader/Save"
84-
RemoveUrl="http://localhost:63028/api/FileUploader/Remove"></UploaderAsyncSettings>
83+
<UploaderAsyncSettings SaveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Save"
84+
RemoveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Remove"></UploaderAsyncSettings>
8585
</SfUploader>
8686
</div>
8787
</div>

Common/Pages/Charts/Chart/RemoteData.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
<div class="control-section" align='center'>
3939
<SfChart Title="Food Vs Price" Width="@Width" Theme="@Theme">
40-
<SfDataManager Url="http://localhost:63028/api/chart" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
40+
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/chart" Adaptor="Adaptors.WebApiAdaptor"></SfDataManager>
4141
<ChartTitleStyle TextOverflow="TextOverflow.Wrap"></ChartTitleStyle>
4242
<ChartEvents OnDataLabelRender="DataLabelEvent" OnPointRender="PointRender"></ChartEvents>
4343
<ChartPrimaryXAxis ValueType="Syncfusion.Blazor.Charts.ValueType.Category" LabelRotation="@Rotation" LabelIntersectAction="@Label"

Common/Pages/Diagram/Diagram/FlowChart.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,8 +371,8 @@
371371
<div style="display: none;visibility: hidden;">
372372
<SfUploader @ref="@UploadFiles" ID="UploadFiles" ShowFileList="false" AllowedExtensions="@ExtensionType">
373373
<UploaderEvents OnUploadStart="@OnUploadFileSelected"></UploaderEvents>
374-
<UploaderAsyncSettings SaveUrl="http://localhost:63028/api/FileUploader/Save"
375-
RemoveUrl="http://localhost:63028/api/FileUploader/Remove"></UploaderAsyncSettings>
374+
<UploaderAsyncSettings SaveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Save"
375+
RemoveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Remove"></UploaderAsyncSettings>
376376
</SfUploader>
377377
</div>
378378
</div>

Common/Pages/Diagram/Diagram/Serialization.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@
7676
</div>
7777
<SfUploader @ref="@uploadFiles" ID="UploadFiles" ShowFileList="false" AllowedExtensions="@ExtensionType">
7878
<UploaderEvents OnUploadStart="@OnUploadFileSelected"></UploaderEvents>
79-
<UploaderAsyncSettings SaveUrl="http://localhost:63028/api/FileUploader/Save"
80-
RemoveUrl="http://localhost:63028/api/FileUploader/Remove"></UploaderAsyncSettings>
79+
<UploaderAsyncSettings SaveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Save"
80+
RemoveUrl="https://blazor.syncfusion.com/services/production/api/FileUploader/Remove"></UploaderAsyncSettings>
8181
</SfUploader>
8282
</div>
8383
</div>

Common/Pages/DropDowns/AutoComplete/DataBinding.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<div class="control-wrapper">
7272
<label class="example-label">Remote Data</label>
7373
<SfAutoComplete TValue="string" TItem="EmployeeData" PopupHeight="200px" Placeholder="Select a name" Query="@RemoteQuery" Autofill="true" @bind-Value="@EmployeeValue">
74-
<SfDataManager Url="http://localhost:63028/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
74+
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
7575
<AutoCompleteFieldSettings Value="FirstName"/>
7676
</SfAutoComplete>
7777
</div>

Common/Pages/DropDowns/AutoComplete/Virtualization.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<div class="control-wrapper">
3535
<label class="example-label">Remote Data</label>
3636
<SfAutoComplete TValue="string" TItem="EmployeeData" PopupHeight="130px" EnableVirtualization="true" Placeholder="Select a name" Query="@RemoteDataQuery" >
37-
<SfDataManager Url="http://localhost:63028/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
37+
<SfDataManager Url="https://blazor.syncfusion.com/services/production/api/Employees" Offline="true" CrossDomain="true" Adaptor="Syncfusion.Blazor.Adaptors.WebApiAdaptor"></SfDataManager>
3838
<AutoCompleteFieldSettings Value="FirstName" />
3939
</SfAutoComplete>
4040
</div>

0 commit comments

Comments
 (0)