I've been trying to figure out all day how JetBrains's Rider sets the .nupkg
version and other metadata.
I can't seem to find any configuration window on the whole IDE to do this, or if I have to have a special file with the data on my project.
The .nupkg data always defaults to the following (where MyProjectName
is the name of my project) whenever I use Rider to "Pack Solution" or "Pack Selected Projects":
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>MyProjectName</id>
<version>1.0.0</version>
<authors>MyProjectName</authors>
<owners>MyProjectName</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Package Description</description>
<dependencies>
...
</dependencies>
</metadata>
</package>
I've looked at Microsoft's Docs for Packages and JetBrains Rider Help, but none gave me any hint at what must be done.
I'm using Rider 2017.3.1 on my Ubuntu 14.04.