Create a file packages.configwith only an entry for packages. NUnit
package.configshould look something like this to verify that the package name, version, and target information are correct.
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="nunit.framework" version="2.6.3" targetFramework="net45" requireReinstallation="true" />
</packages>
extend the file analysis utility you wrote .csproj
to edit the csproj file and add tags below
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
packages.config ; , , package.config
<ItemGroup>
<None Include="$(SolutionDir)packages.config">
<Link>$(SolutionDir)packages.config</Link>
</None>
</ItemGroup>
, visual studio NuGet
; NuGet .
update-package