Skip to content

Instantly share code, notes, and snippets.

@scale-tone
Last active November 26, 2020 23:52
NUSPEC-file for packaging a .Net-based Function App into a NuGet package
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>my-nuget-packed-function</id>
<version>1.0.0</version>
<description>my-nuget-packed-function</description>
<authors>my-nuget-packed-function</authors>
</metadata>
<files>
<file src="..\publish\**" target="/"/>
</files>
</package>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment