Skip to content

Instantly share code, notes, and snippets.

@AndyLPK247
Last active September 12, 2018 21:30
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 AndyLPK247/57867293047cbbd5257ce73636e6113d to your computer and use it in GitHub Desktop.
Save AndyLPK247/57867293047cbbd5257ce73636e6113d to your computer and use it in GitHub Desktop.
Example .nuspec File for NuGet Quick Reference
<?xml version="1.0"?>
<package >
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>$title$</title>
<authors>$author$</authors>
<owners>$author$</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<copyright>$copyright$</copyright>
<tags>tag1 tag2</tags>
<dependencies>
<dependency id="Newtonsoft.Json" version="11.0.2" />
<dependency id="RestSharp" version="106.3.1" />
<dependency id="Selenium.Support" version="3.14.0" />
<dependency id="Selenium.WebDriver" version="3.14.0" />
</dependencies>
</metadata>
</package>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment