I'm creating a new nuget package in the nuspec file it seems they have a bizarre syntax $something$
<package >
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>$title$</title>
<authors>$author$</authors>
</metadata>
</package>
What is this syntax $id$? Is this just a content placeholder so I can fill this in. Or is this a templating feature which will return the id variable? If it's the latter where do I declare these variables?