IPP .Net SDK for Customer Account Data. Signed versions of assemblies required - intuit-partner-platform

I'm working on COM-compatible .net assembly, based on IPP .Net SDK for CAD for using it in a SaaS application. My assembly needs to be strong-named. But it references Intuit.Ipp.DataAggregation.AggregationCategorizationServices.dll, Intuit.Ipp.DataAggregation.Core.dll and the other 8 assemplies, which are not strong-named.
Could you provide a signed versions of all the assemblies in SDK?
Thanks.

The .Net SDK 2.3.0 (for QBO v3) signed assemblies can be found here (direct link to .zip file):
https://intuitcorp.quickbase.com/up/bhvhx8wfg/g/r9/eg/va/IppDotNetSdkForQbApiV3-1.0.7-Signed.zip
Reference:
https://intuitdeveloper.lc.intuit.com/questions/1204996-i-see-the-nuget-package-for-intuit-ipp-net-v2-3-where-do-i-get-signed-assemblies-for-the-same

Related

Can Duende IdentityServer v6 be used in a .Net Framework Application?

We are reviewing our our applications which use IdentityServer now it has rebranded to Duende become a subscription model and have come across a forgotten application which consists of a number of .Net Framework projects, one of which references the dll's IdentityServer3 and IdentityServer3.WsFederation.
If we want to be using a supportable we need to upgrade to IdentityServer v6 but given that this is a .Net 6 application, the only route I can see to this is to upgrade all the projects in the solution to be .Net 6 also.
Is there a supported .Net Framework compatible version of IdentityServer?
If not is there a trick I am missing which means I don't have to upgrade the entire solution to .Net Core and maybe limit it to just the one project that references these two dll's?
Thanks in advance

Any API works like Microsoft.Azure.NotificationHubs and can be used in .NETFramework 4.5.2 project?

I plan to use the Microsoft.Azure.NotificationHubs to push notification through Azure notification hub in backend service of an existed project. However, I found that the project is using .NETFramework 4.5.2. As the document stated, the SDK has dependecy to .NETFramework 4.6.1 or higher.
Since the existed project is already developed well and problems could appear if I upgrade. Any other solutions please?
Due to you don't want to upgrade to .Net Framework 4.6.1 or higher. You can use REST API, create HttpClient in your existed project to send Http Request.
(notificationhubs)REST API methods
You can use HttpHelper in my sample code.

Why was SF Stateless Web API template removed?

In the picture below we can see in the year 2018 in VS2017 there is no Stateless Web API template in Service Fabric templates in VS. Why was this removed and what are it's replacements?
Because at the time you took the first screenshot, probably using .NET SDK 2.8 or earlier and SF tools for VS 1.7 and earlier, Service Fabric and the WebApi templates were based on dot net framework only.
The releases that came after Service Fabric .NET SDK 3.0 and SF tools for VS 2.0 , like the one in the screenshot, started a migration to .net standard 2, now you can target dot net framework or dot net core using the same libraries targeting .Net Standard. For A while you had both templates available, now everything is based on core.
The main difference between the old and the new is that the previous templates you used dot net framework 4.6.2 + Owin, now you use AspNet Core with any framework compatible with the .Net Standard 2.
You might get more info from these release notes:
https://blogs.msdn.microsoft.com/azureservicefabric/2017/09/25/service-fabric-6-0-release/
https://blogs.msdn.microsoft.com/azureservicefabric/2018/01/26/service-fabric-6-1-release/

Deploying Web API with a setup

Is there a manual for deploying an asp.net web api project?
Do I have to deploy the web api dll's or are they included in .Net 4.5?
That about JSON.NET? It seems not to be a component of .Net 4.5. Do I have to copy this ddl's on my own and what can you say me about the licensing of JSON.NET?
JSON.NET has a MIT license. What do I have to do if I want to use JSON.NET in my web api?

Is Windows Azure compatible with the .NET 2.0 framework?

I have a service that was developed in the .NET 2.0 framework. It is installed in several sites and works with my application. I would like the service to be able to "report" back to me with certain information about the application. I wanted to see if Windows Azure would be an option for me to be able to store reports in a cloud db and be able to pull them when I need to. One of my main concerns is it compatible with my .NET 2.0 service?
Thank you.
In a word: yes. Windows Azure can run code compiled against 2.0/3.5 and 4.0. You may not have access to all of the Azure SDK (some of the libraries require 3.5), but your service should run with no modifications.