Integrate SignalR core version into SPA Core - aspnetboilerplate

I'm just want to ask you. SignalR now in alpha. And as I understand now in SPA Core version you have only old version of signalr, that won't work on linux. Is there any way to replace old version to new one? Or if you have roadmap on it, when are you planing to implement it in core version?

You can now download v3.4.1 of the template with the Abp.AspNetCore.SignalR preview.
Read the documentation for SignalR AspNetCore Integration.

Related

Microsoft.Bot.Connector.DirectLine Support in .NET MAUI

I am converting my Xamarin Forms Application to .NET MAUI.
In existing app we have used Microsoft.Bot.Connector.DirectLine(3.0.2) for using the Bot Framework Direct Line REST API.
Is Microsoft.Bot.Connector.DirectLine package supported in .net MAUI?
In the Microsoft.Bot.Connector.DirectLine Nuget Link I don't see the net6.0 as the compatible target framework.
If it's not supported is there any alternative package?
Any help is appreciated!
This is an old package which hasn't been updated since 2017. It likely doesn't support .NET 6.0 and probably won't be updated to support it.
The good news is that you do not need this package to communicate with a bot over Direct Line. You can use .NET Standard Library objects (such as HttpClient) to communicate with Direct Line as you would any other REST API. There may be other libraries and frameworks you could use as well.
See the Direct Line 3.0 Documentation to see how to use the API.

What's the best way to migrate from preview version of .NET Core to the latest version?

I have a site built in .NET Core 1.0 Preview 2. It's using the deprecated xproj file. I need to migrate the project to the lastest .NET Core 3.1.
Would it be simpler to try and go through all the migration steps listed below for each new version one at a time or would it be easier to try creating a new site in 3.1 and trying to just move my code over?
https://learn.microsoft.com/en-us/aspnet/core/migration/1x-to-2x/?view=aspnetcore-3.1
If the better answer is go through each migration one at a time, there are there any good walkthroughs on migrating from the preview version to .NET Core 1.0?

Is there a way to use enterprise library in .NET Core 1.1.2 web api

I am planning to use Enterprise Library for database access on a Web API project which is going to be built using .Net core app.
But I am unable to install Enterprise library using NuGet as the latest version of Enterprise Library is not compatible with.Net core app framework.
Note, I don't want to use Entity Framework.
Appreciate if the community can help on this.
If you can migrate your application to .Net Core 2.0 which is still in preview mode, but Microsoft promised to release it by Q3 2017, I have forked out the Enterprise Library project and ported that to .Net Core 2.0 which you can find it under this repository:
https://github.com/Chavoshi/EnterpriseLibrary.NetCore
And also this is the Nuget package for Data Application Block:
https://www.nuget.org/packages/EnterpriseLibrary.Data.NetCore
Still there are some missing parts such as OdbcFactory and OleDbFactory which they are not available in .Net ported APIs (Or Nuget package is not published yet), but I am keep working on them to maybe port them by myself or update it since the API will be available. I appreciate anyone who can contribute on this project as well. :)

Using SignalR in ASP.NET Core 1.0

We have an ASP.NET Core 1.0 RC1 application and we want to incorporate SignalR in it. However, SignalR is not yet a part of ASP.NET Core 1.0.
Is there a way to still incorporate SignalR in our existing app or will we have to look into some other web sockets library such as socket.io?
I had the same issue with SignalR and the upgrade to core 1.0 rtm.
The answer from above does not work anymore so I did the following:
I use this nugget feed:
https://www.myget.org/F/aspnetcirelease/api/v3/index.json
and this nuget package:
"Microsoft.AspNetCore.SignalR.Server": "0.1.0-rtm-21431"
This should help until the first release of SignalR 3
Although SignalR 3 won't be a part of the 1.0 release of ASP.NET Core, you can still use SignalR in an ASP.NET Core web app project.
In fact, check out this SignalR project on the official "aspnet" account on Github:
https://github.com/aspnet/SignalR-Server
I download the source code, and here's what it looks like in VS2015 (see screenshot below):
Hope that helps! :)

IBM FileNet Content Manager Upgrade 4.5 to 5.2

We are upgrading IBM Filenet Content Manager 4.5.1.
what version of Filenet and distribution recommended install. Is it the IBM filnet content manager version 5.1 or 5.2, based on stability ?
I am bit concerned beacuse of so many customizations and workflows running on our existing 4.5.1 system.
I'd recommend going to FileNet Content Platform Engine 5.2. I've recently completed an upgrade from 4.5 to 5.2, and no changes to any existing workflows or client code were required. There have been some additions to the API, but no breaking changes.
The latest fix pack, released a few weeks ago, is 5.2.0.3. I can't think of any advantage to going to 5.1 instead of 5.2.
I agree with cmaitchison. We have recently completed a 5.2 upgrade an it is straightforward. Even though the previous custom applications would work, it is better to re-compile using the latest libraries and the version of JRE your application server would use.

Resources