I install Command Line Parser Library through NuGet. It works great in Visual Studio 2012 itself (I should mention that I use ReSharper plugin as well). I get intelliSense on library's classes and it shows up green. However, when I try to build a solution it gives me
The type or namespace name 'CommandLine' could not be found (are you missing a using directive or an assembly reference?) Options.cs
on the code:
using CommandLine;
namespace Namespace
{
public class Options
{
[Option(null, "prop", DefaultValue = null, HelpText = "Prop")]
public string Prop { get; set; }
}
}
What did I miss and how do I fix it? (I don't have this issue with other libraries)
Edit: I checked csproj file and it does contain the reference:
<Reference Include="CommandLine, Version=1.9.3.34, Culture=neutral, PublicKeyToken=490a9207c15e9e2a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\CommandLineParser.1.9.3.34\lib\CommandLine.dll</HintPath>
</Reference>
Still the build does not work.