Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run a .Net Core dll?

Tags:

c#

.net-core

I've build my console application using dnu build command on my Mac. The output is MyApp.dll.

As it is not MyApp.exe, how can I execute it on windows, or even on Mac?

The code is:

using System;

class Program
{
    public static void Main()
    {
        Console.WriteLine("Hello from Mac");        
    }
}
like image 628
mehrandvd Avatar asked Apr 09 '16 12:04

mehrandvd


2 Answers

Add this to your project.json file:

 "compilationOptions": {
        "emitEntryPoint": true
 },

It will generate the MyApp.exe on Windows (in bin/Debug) or the executable files on other platforms.

Edit: 30/01/2017

It is not enough anymore. You now have the possibility between Framework-dependent deployment and Self-contained deployment as described here.

Short form:

Framework-dependent deployment (.net core is present on the target system)

  • Run the dll with the dotnet command line utility dotnet MyApp.dll

Self-contained deployment (all components including .net core runtime are included in application)

  • Remove "type": "platform" from project.json
  • Add runtimes section to project.json
  • Build with target operating system dotnet build -r win7-x64
  • Run generated MyApp.exe

project.json file:

{
    "version": "1.0.0-*",
    "buildOptions": {
        "emitEntryPoint": true
    }, 
    "frameworks": {
        "netcoreapp1.0": {
            "dependencies": {
                "Microsoft.NETCore.App": {
                    "version": "1.0.1"
                }
            }
        }
    },
    "imports": "dnxcore50",
    "runtimes": { "win7-x64": {} }
}
like image 145
Fabian Avatar answered Oct 18 '22 19:10

Fabian


You can use dotnet publish to generate .exe output for your console app.

More details: Publish .NET Core apps with the CLI

like image 7
giacomelli Avatar answered Oct 18 '22 20:10

giacomelli