Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin_https/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
1nf0rmagician committed Dec 12, 2022
2 parents 78f7777 + 2a7ac25 commit 6d1751f
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 127 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.13.2
5.13.3

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion src/StartProject.Asp/StartProject.Asp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.SignalR.Core" Version="1.1.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
<PackageReference Include="Moryx.Runtime.Kernel" />
<PackageReference Include="Moryx.Asp.Extensions" />
Expand Down
8 changes: 1 addition & 7 deletions src/StartProject.Asp/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ public void ConfigureServices(IServiceCollection services)
.AllowCredentials());
});

services.AddSignalR();
// Add MORYX SignalR hubs
services.AddMoryxProductManagementHub();
services.AddControllers()
.AddJsonOptions(jo => jo.JsonSerializerOptions.Converters.Add(new JsonStringEnumConverter()));

Expand Down Expand Up @@ -69,10 +66,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
if (env.IsDevelopment())
app.UseCors("CorsPolicy");
app.UseAuthorization();

// Add MORYX SignalR hubs
app.UseMoryxProductManagementHub();


app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
Expand Down

0 comments on commit 6d1751f

Please sign in to comment.