Netlify and ASP.NET Core Web API - asp.net-core

any one have idea: How to deploy ASP.NET Core API on https://www.netlify.com ?
I tried this https://www.youtube.com/watch?v=8NOmadyM1Ao , but it not worked for ASP.NET Core API , and I have no idea how to do that , and its documentation https://docs.netlify.com/configure-builds/file-based-configuration/#sample-file is ambiguous and its difficult to understand , pleas any one have easy way or clear way for deploying ?

It seems that it is possible but not easy. Have a look at this answer.
Publishing a .NET Core / Angular 4 Project to Netlify
Similar to creating a docker container for your application, you have to specify a set of steps to build your app including downloading the dotnet core SDK.

Related

How to use ReportViewerForMVC in ASP.NET CORE Web Application

I am trying to integrate SSRS report into my asp.net core web app. I followed some tutorial on how to setup report viewer in asp.net mvc using the ReportViewerForMVC nuget package. However I encounter the following error. Hope someone can help to guide me on how to achieve this. Thanks alot!

What are the options to run Nextjs with Asp.Net Core Web API as a SPA?

My main concern is the utilize the concept of Server-Side Rendering (SSR) with the Asp.Net Core API project and NextJs. I have been trying for a while to run the NextJs with Asp.Net Core API as SPA just like we do with the available templates (React or Angular) on Visual studio. But ended up with some unfamiliar issues.
In the first place, I would like to know, is it possible to use NextJs with Asp.NetCore Web API as SPA for SSR without using external dependencies? I have found some articles mentioning about razzlejs and ReactJs.Net, Is it worth using them?
I will really appreciate your guidance.
Thank you.

Can ASP.NET CORE MVC be hosted in Xamarin App(Android)?

I have a ASP.NET CORE MVC (.NET CORE 3.1) application running well on Kestrel in Windows, Now I'm wondering if possible to migrate it to Android via Xamarin?
The purpose of this move is the lower cost of Android device.
And I noticed: Run ASP.NET Core 3.0 apps with MonoVM
but seems no details?
No, Not yet (Jan 2021).
Xamarin, NetFramework, Net5, NetCore3 all support NetStandard. AspNetCore is based on NetCore, not NetStandard. If AspNetCore was a NetStandard library, it would support it, but AspNetCore uses other libraries in NetCore which do not exist on Xamarin.
By the way, if you need just a simple web server running on android like Kestrel, you can use EmdedIO. Indeed it doesn't support MVC, MVP, and MVVM, so you can not run AspNetCore app on Xamarin:
https://github.com/unosquare/embedio

How to enable trace.axd in ASP.NET core?

Our app is based on ASP.NET Core 2.0. It works fine in development environment but we see an oauth error when published to production.
All the documentation on asp.net core seems to point to using ILoggingxxx interfaces. The examples I found typically call logging.AddConsole() method so that the log lines can be viewed in VIsual Studio debug window. I am wondering if the good old trace.axd is still available under asp.net core. If so, I would appreciate the steps to enable tracing. Regards.
trace.axd is exclusive to applications based on .NET Framework and ASP.NET 4.x. It is not available in ASP.NET Core applications at all.

Is it possible to run ASP.NET MVC 3 apps on Mono?

I need to run some MVC 3 app on Linux running server, and it seems the only option is Mono? the site only talks about the web services but I wish to know running the whole mvc 3 app is also possible? thanks
It depends what you mean by the "whole mvc 3 app". The ASP.Net MVC3 stack has been implemented in Mono but check here and here for further details.