17

Ubuntu Blog: Creating cross-platform applications with .NET on Ubuntu on WSL

 3 years ago
source link: https://ubuntu.com/blog/creating-cross-platform-applications-with-net-on-ubuntu-on-wsl
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

.NET is an open source software framework for building cross-platform applications on Linux, Windows, and macOS.Ubuntu on WSL allows you to build and test applications for Ubuntu and Windows simultaneously. What happens when we mix these together? This blog will demonstrate how to install a .NET development stack on WSL, build a simple OS-aware application, and then test it on both Linux and Windows.

iABzUz3.png!web

Enable WSL 1

In PowerShell as Administrator run:

Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
zqAbAvI.png!web

and then restart Windows:

Restart-Computer

Enable WSL 2 (Windows 10 2004+)

See “ Ubuntu on WSL 2 Is Generally Available ” for more details on Ubuntu on WSL 2.

In PowerShell as Administrator run:

dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
NRz6Fj2.png!web

and then restart Windows:

Restart-Computer

Install Ubuntu on WSL

Download Ubuntu from the Microsoft Store :

fyYzY3M.png!web

For more ways to install Ubuntu on WSL, see the Ubuntu on WSL wiki page .

Install Windows Terminal

Download the Windows Terminal from the Microsoft Store :

3eeyai7.png!web

Windows Terminal can also be downloaded from GitHub .

Run Ubuntu on WSL

Open Windows Terminal in PowerShell and run:

ubuntu.exe

When you run Ubuntu on WSL for the first time it will install and then you will create a Linux user. This is separate from your Windows user.

AzqA7vJ.png!web

Exit and re-open Windows Terminal and you will find Ubuntu on the drop-down:

IVBr22e.png!web

You can set Ubuntu as the default and configure Windows Terminal in settings.json .

Update Ubuntu on WSL

You should periodically check for updates and run upgrades on Ubuntu on WSL. We do this with apt, the Ubuntu package manager.

To check for updates run:

sudo apt update
iumyIji.png!web

To get upgrades run:

sudo apt upgrade
qeUZnyn.png!web

You can automatically apply any available upgrades by adding the -y flag:

sudo apt upgrade -y

Add Microsoft’s .NET repository and signing key

We need to add Microsoft’s .NET repository and signing key to apt. We will download and install a package from Microsoft that will do this.

Download the Microsoft repository and key package for 20.04:

wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
EZrMjuv.png!web

Install the Microsoft repo package manually using dpg -i:

sudo dpkg -i packages-microsoft-prod.deb
AFRveei.png!web

Now when you update apt you will see the Microsoft repository is checked for upgrades:

fQzqQr2.png!web

Install .NET SDK

Install the .NET and related dependencies using apt from the Microsoft repository:

sudo apt-get install dotnet-sdk-3.1 -y
Rva2umE.png!web

Create a workspace

Create a new directory for to work in and change to that directory:

mkdir dotnetproject
cd dotnetproject/
ueiMb2f.png!web

Create a new .NET project

Create a new .NET console project using dotnet new. This will create a file called Program.cs and other necessary folders and files:

dotnet new console
jAVvE3i.png!web

Explore our .NET app

List the files in your new .NET project:

ls

View the contents of Program.cs:

cat Program.cs
rAR3IzJ.png!web

Run the sample program:

dotnet run
yyY3Afe.png!web

Customize our .NET app

Open Program.cs in your favorite editor: vi, nano, emacs, or Code with the remote WSL extension:

7JFveiq.png!web

For our purposes, we will use nano, which is included with Ubuntu on WSL:

nano Program.cs
vQF3ui3.png!web

To our header add the Interop services namespace :

using System.Runtime.InteropServices;

Then replace:

Console.WriteLine("Hello World!");

With:

Console.WriteLine($"Hello {System.Environment.GetEnvironmentVariable("USER")}");

if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
 {
  Console.WriteLine("We're on Linux!");
 }

if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
 {
  Console.WriteLine("We're on Windows!");
 }

Console.WriteLine("Version {0}", Environment.OSVersion.Version);
E7rmiqJ.png!web

This application tells us our current user, checks if we are on Windows or Linux, and then gives the OS kernel version.

Exit and save and run with:

dotnet run
UBRfMjv.png!web

Make our .NET application cross-platform

We need to update our .NET project file, dotnetproject.csproj, to tell .NET to build for both Linux and Windows.

Open dotnetproject.csproj in our editor and add:

<PropertyGroup>
    <RuntimeIdentifiers>win10-x64;linux-x64</RuntimeIdentifiers>
 </PropertyGroup>

This directs .NET to build self-contained binaries for both Windows 10 x64 and Linux x64.

7jM32qf.png!web

Build our cross-platform application

Once our project is properly configured, building our .NET application is as simple as:

dotnet publish -r win10-x64
dotnet publish -r linux-x64
JF7RbaN.png!web

Self-contained binaries for each platform with all required libraries can be found in the project’s /bin/ folder:

ls bin/Debug/netcoreapp3.1/
6Vry2qJ.png!web

Test Linux build

You can run your Linux binary direct as follows:

./bin/Debug/netcoreapp3.1/linux-x64/publish/dotnetproject
miEjqeq.png!web

Test Windows build

To run the Windows build, copy it to your Windows file system:

cp -r ~/dotnetproject/bin/Debug/netcoreapp3.1/win10-x64/publish /mnt/c/Users/Hayden/OneDrive/Desktop/

Then run:

/mnt/c/Users/Hayden/OneDrive/Desktop/publish/dotnetproject.exe
qMN3QbR.png!web

We have built and run the same application for both Linux and Windows. We can test them both simultaneously using WSL.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK