Questions tagged as '.net-core'

1
answer

Is .NET Core stable enough for production?

Is .NET Core Stable and Reliable to Be Used in Production Environments for Commercial Websites?     
asked by 21.02.2017 / 22:47
2
answers

What can I do in .Net Framework and .Net Core? And vice versa

I grew my eye on .Net Core (ASP.Net Core), I started with C #, but I left by going to the "open-source" side, now with this opportunity I decided to go back ". I intend to use .Net Core (ASP.Net Core) in a personal project and in the future t...
asked by 04.10.2016 / 05:59
2
answers

How to install .NET Core Nuget packages using VS Code?

I'm using VS Code to develop a .NET Core project and would like to know how to install packages in Nuget on it. In Visual Studio, there is a specific terminal for this, the Package Manager Console . You need to use the Add-Package com...
asked by 27.11.2017 / 19:46
3
answers

Alternatives to develop in C # in Linux? [closed]

My notebook has Ubuntu 14 operating system installed. I have great desire to join development in the CSharp language. But I would like to know if there is any good alternative in OS like Linux, since it does not have a Visual Studio of life....
asked by 29.04.2016 / 14:37
1
answer

Compatibility between .NET Core 2.0 and .NET Framework 4.7

I'm creating a general purpose library (DLL) for reuse in .Net Core 2.0 and .Net Framework 4.7 projects. I want to have .Net Core projects in Linux and .Net Framework 4.7 projects for Windows. Can a library developed with .Net Core 2.0 be used i...
asked by 20.08.2017 / 22:11
1
answer

Dependency injection in .NET Core

I am migrating a WebAPI project with .NET Framework 4.6 for .NET Core. In my project I use Unity to do Dependency Injection: var container = new UnityContainer(); DependencyResolver = new UnityDependencyResolver(container); container.Regist...
asked by 03.11.2017 / 22:09
2
answers

How does C # run on other platforms?

As a complement to this question , run C # in a where the .NET Framework is native, it is standard to run the application executable. As far as I know, C # depends on the .NET Framework to be compiled and run , and thus have all code functio...
asked by 17.07.2018 / 19:36
2
answers

Reading HTML pages with .NET Core

Next, I have a code that reads a particular web page: private string GetCodePage() { WebRequest request = WebRequest.Create(URL); WebResponse response = request.GetResponse(); StreamReader reader = new StreamReader(response.GetResp...
asked by 28.06.2016 / 16:30
1
answer

How to get a Mac-Address from a LAN IP using .NET Core on Linux?

I already have tools that can identify the Mac-Address of the devices in my network, as long as the 'server' or the application is running in Windows and .NET Framework. I have used the following: using System; using System.Net; using Syste...
asked by 26.10.2017 / 21:32
1
answer

Is it possible to include the .NET requirement to run a stand-alone application?

The title can be confusing, but the goal is to make an application written with .NET run without the .NET Framework. In practice this is almost impossible because the application depends on the .NET libraries to run, but in my theory, merge the...
asked by 19.09.2018 / 05:57