Skip to content

Instantly share code, notes, and snippets.

@hd9
Created February 7, 2020 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hd9/e57b49d772a1262d78933492dd53be0b to your computer and use it in GitHub Desktop.
Save hd9/e57b49d772a1262d78933492dd53be0b to your computer and use it in GitHub Desktop.
Sample NuGet for deploying NServiceBus on Azure WebJobs
<!--
// **********************************************
// Fore more information, visit:
// https://blog.hildenco.com/2020/02/migrating-nservicebus-backends-to-azure.html
// **********************************************
-->
<?xml version="1.0"?>
<package>
<metadata>
<id>MyApp</id>
<version>0.1.0.0</version>
<title>My Awesome App</title>
<authors>MySelf</authors>
<owners>MySelf</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>Some release notes</releaseNotes>
<copyright>Copyright 2020</copyright>
<description>My Awesome App - Some description</description>
</metadata>
<files>
<file src="..\MyApp.Backend\bin\release\*.*" target="App_Data\jobs\continuous\MyApp.Backend"/>
</files>
</package>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment