Skip to content

Instantly share code, notes, and snippets.

View inventti-silvio's full-sized avatar

Silvio Greuel inventti-silvio

View GitHub Profile
@mrchief
mrchief / Deploy-Windows-Service-Via-MSBuild.proj.xml
Last active June 26, 2024 09:37
MSBuild Script to deploy Windows Service to remote or local machine
<Project DefaultTargets="CopyOutputs;DeployService" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<!-- These settings control what the service's name, description etc appear in services.msc task panel. -->
<PropertyGroup Label="ServiceMetaData">
<ServiceName>ShinyNewService</ServiceName>
<ServiceDisplayName>Shiny New Service</ServiceDisplayName>
<ServiceDescription>A shiny new service, that changes the world for the greater good.</ServiceDescription>
</PropertyGroup>
<Choose>