Skip to content
Advertisement

Tag: .net

Understanding .Net Core and Mono

When developing an application in .Net Core, the .NET dependencies and DLLs are embedded in the application? does this mean that I do NOT need to install the .Net dependencies on the client PC? If I develop a .Net Core console application for Linux, is it necessary to install Mono on the PC with Linux (client)? Are .Net core applications

.Net Core ignoring Environment Variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE

It seems apparent that you can save some time doing .NET Core builds by setting Environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true. I am finding this is not the case on CentOS 7 and Debian Jessie Linux distros. I have a Jenkins slave Docker image, used by Jenkins to build .NET Core services, my image tag is jenkins.slave.dotnet.image. The Jenkins Docker Plugin, uses jenkins.slave.dotnet.image

`Unhandled Exception: System.ArgumentNullException: Value cannot be null.` error while running `dotnet run` using a startup script

I’m trying to run a dotnet app using dotnet run –configuration Release at system server Startup/Reboot. I’m using a init.d script to acheive the same. My startup script, located at /etc/init.d/myscript contains the following: Contents of botScript.sh: When my server Starts or Reboots the startup script gets executed but dotnet run doesn’t work. I get the following error(s): But all

How to run DNX ‘console app’ as a background service on Linux?

I’ve implemented a DNX (dnx451) ‘console app’ which is intended to run as a background service. On Windows I would just turn it into a Windows Service. What is the proper way to do this on Linux (for instance, Ubuntu)? EDIT: Found more info here: How to migrate a .NET Windows Service application to Linux using mono? Answer On Unix/Linux

Use of MONO_IOMAP to cope with a hard-coded file path?

I’m trying to get a Windows .NET binary to run under Linux using Mono. The app runs fine on Windows. It presently fails under Mono because it can’t find a file with a hard-coded path. For testing, I’m using a Fedora 23 VirtualBox VM running under Windows 7. All the files are present on the VM’s FS (no shares with

Advertisement