In the past, the reference to NUnit in a .csproj file was:
<Reference Include="nunit.framework, Version=4.0.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
<HintPath>..\packages\NUnit.4.0.1\lib\net462\nunit.framework.dll</HintPath>
</Reference>
Notice the concordance between the version 4.0.1 of the package an the version, Version=4.0.1.0 of the Reference tag.
When I upgrade to 4.3.1 of NUnit, I get:
<Reference Include="nunit.framework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
<HintPath>..\packages\NUnit.4.3.1\lib\net462\nunit.framework.dll</HintPath>
</Reference>
There is a different version Version=4.4.0.0 in the Reference XML tag than in the HintPath (v 4.3.1).
Is this by design? Was there a typo?
In the past, the reference to
NUnitin a.csprojfile was:Notice the concordance between the version
4.0.1of the package an the version,Version=4.0.1.0of theReferencetag.When I upgrade to
4.3.1ofNUnit, I get:There is a different version
Version=4.4.0.0in theReferenceXML tag than in theHintPath(v4.3.1).Is this by design? Was there a typo?