By Ehsan Yaghmori
•
Thursday, February 15, 2024
.NET Core is a powerful, cross-platform framework that enables developers to build high-performance applications. While .NET Core applications are typically executed in development environments or as console applications, you may want to run your application as a Windows Service for production environments. Running an application as a Windows Service provides several advantages, such as automatic startup, background execution, and easier management.
Prerequisites
- Windows Operating System - The steps below are specifically for Windows environments.
- .NET Core SDK - Download and install the .NET Core SDK if you haven't already.
- Visual Studio or Visual Studio Code - You'll need an IDE to write and run your application.
- Administrator Privileges - Setting up and managing Windows Services requires administrator access.
Step 1: Create a New .NET Core Worker Service
Step 2: Modify the Worker Service
Worker
class, you’ll find an example
ExecuteAsync
method that runs in the background when the service starts. You can modify this method to include the logic of your application.
ExecuteAsync
method as follows:
Step 3: Add the Windows Service Hosting
Program.cs
file to include the
UseWindowsService
method. This will configure the worker to run as a Windows Service when deployed to a Windows machine.
Program.cs
as follows:
Step 4: Publish the Application
Step 5: Install and Run the Service
sc
command or create a service configuration script using PowerShell.
sc
command:
"C:\path\to\your\published\app\MyWindowsService.exe"
with the actual path to your published application.
Step 6: Verify Service Operation
sc query
command:
ILogger
service.
Conclusion