Skip to content

Commit 76cb26e

Browse files
Merge pull request #49 from Sivasankar-Singaravelu/1039579-ResolveRedisStringIssue
1039579: Resolved the redis string issue
2 parents 1cf3aa2 + 745e87a commit 76cb26e

10 files changed

Lines changed: 1 addition & 888 deletions

EJ2CoreSampleBrowser_NET10.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@
8484
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" Version="9.9.1-preview.1.25474.6" />
8585
<PackageReference Include="Azure.AI.OpenAI" Version="2.1.0" />
8686
<PackageReference Include="StackExchange.Redis" Version="2.7.33" />
87-
<PackageReference Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis" Version="10.*" />
8887
</ItemGroup>
8988
<ItemGroup>
9089
<Compile Remove="Controllers\TreeGrid\ServerSideExportingController.cs" />

EJ2CoreSampleBrowser_NET8.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" Version="9.9.1-preview.1.25474.6" />
3838
<PackageReference Include="Azure.AI.OpenAI" Version="2.1.0" />
3939
<PackageReference Include="StackExchange.Redis" Version="2.7.33" />
40-
<PackageReference Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis" Version="8.*" />
4140
</ItemGroup>
4241
<ItemGroup>
4342
<PackageReference Include="Syncfusion.AspNetCore.BarcodeGenerator" Version="34.1.29" />

EJ2CoreSampleBrowser_NET9.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@
8383
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" Version="9.9.1-preview.1.25474.6" />
8484
<PackageReference Include="Azure.AI.OpenAI" Version="2.1.0" />
8585
<PackageReference Include="StackExchange.Redis" Version="2.7.33" />
86-
<PackageReference Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis" Version="9.*" />
8786
</ItemGroup>
8887
<ItemGroup>
8988
<Compile Remove="Controllers\TreeGrid\ServerSideExportingController.cs" />

Pages/DiagramHub.cs

Lines changed: 0 additions & 569 deletions
This file was deleted.

Program.cs

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
#endregion
2828

2929
#region Diagram Usings
30-
using EJ2SDiagramSample.Pages;
3130
using EJ2CoreSampleBrowser.Services;
3231
using StackExchange.Redis;
3332
#endregion
@@ -120,10 +119,6 @@
120119
options.MaximumParallelInvocationsPerClient = 2;
121120
options.HandshakeTimeout = TimeSpan.FromMinutes(1);
122121
})
123-
.AddStackExchangeRedis(builder.Configuration.GetConnectionString("Redis"), options =>
124-
{
125-
options.Configuration.ChannelPrefix = "diagramHub";
126-
})
127122
.AddJsonProtocol(options =>
128123
{
129124
options.PayloadSerializerOptions.PropertyNamingPolicy = System.Text.Json.JsonNamingPolicy.CamelCase;
@@ -141,10 +136,6 @@
141136
return ConnectionMultiplexer.Connect(connectionString);
142137
});
143138

144-
// Custom Services
145-
builder.Services.AddScoped<IRedisService, RedisService>();
146-
builder.Services.AddScoped<IDiagramService, DiagramService>();
147-
148139
#endregion
149140

150141
builder.Services.AddDirectoryBrowser();
@@ -243,14 +234,5 @@
243234
endpoints.MapHub<ScheduleHub>("/scheduleHub");
244235
});
245236
#endregion
246-
247-
#region Diagram Hub Configuration
248-
// DiagramHub for real-time Syncfusion Diagram collaboration
249-
app.UseEndpoints(endpoints =>
250-
{
251-
endpoints.MapHub<DiagramHub>("/diagramHub");
252-
});
253-
#endregion
254-
255237
app.Run();
256238

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Clone the repository. This repository contains the .NET 8, .NET 9 and .NET 10 pr
104104
<div class="controlanchorlink"><a target="_self" href="https://ej2.syncfusion.com/aspnetcore/markdowneditor/overview#/fluent2">Markdown Editor</a></div>
105105
<div class="controlanchorlink"><a target="_self" href="https://ej2.syncfusion.com/aspnetcore/documentation/in-place-editor/getting-started">In-place Editor</a></div>
106106
<div class="controlanchorlink"><a target="_self" href="https://ej2.syncfusion.com/aspnetcore/documentation/image-editor/getting-started">Image Editor</a></div>
107-
<div class="controlanchorlink"><a target="_self" href="https://ej2.syncfusion.com/aspnetcore/documentation/block-editor/getting-started">Block Editor/a></div>
107+
<div class="controlanchorlink"><a target="_self" href="https://ej2.syncfusion.com/aspnetcore/documentation/block-editor/getting-started">Block Editor</a></div>
108108
<p>&nbsp;</p>
109109
<div><p class="controlcategory">CALENDARS</p></div>
110110
<div class="controlanchorlink"><a target="_self" href="https://ej2.syncfusion.com/aspnetcore/documentation/schedule/getting-started">Scheduler</a></div>

Services/DiagramService.cs

Lines changed: 0 additions & 65 deletions
This file was deleted.

Services/IDiagramService.cs

Lines changed: 0 additions & 10 deletions
This file was deleted.

Services/IRedisService.cs

Lines changed: 0 additions & 18 deletions
This file was deleted.

Services/RedisService.cs

Lines changed: 0 additions & 204 deletions
This file was deleted.

0 commit comments

Comments
 (0)