I'm trying to create a NuGet package which has a dependency on System.Net.Http
(need the HttpClient). For framework version 4.5.1, this assembly is a part of the BCL. Hoewever, in 4.0 it is not. I believe it having compiling correctly with the proper conditional statements in the csproj.
The problem I'm currently wrestling with is that when I reference this package in a 4.5.1 project, it pulls in the dependency on Microsoft.Net.Http
. I really only want to depend on Microsoft.Net.Http
for net40.
Here's my nuspec file:
<?xml version="1.0"?>
<package>
<metadata>
<id>MyApp</id>
<version>$version$</version>
<title>MyApp</title>
<authors>Me</authors>
<owners>Me</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Description</description>
<releaseNotes>Initial release</releaseNotes>
<copyright>Copyright 2016</copyright>
<dependencies>
<group>
<dependency id="Newtonsoft.Json" version="8.0.2"/>
</group>
<group targetFramework="net40">
<dependency id="Microsoft.Bcl" version="1.1.10" />
<dependency id="Microsoft.Bcl.Build" version="1.0.14" />
<dependency id="Microsoft.Net.Http" version="2.2.29" />
</group>
</dependencies>
</metadata>
<files>
<file src="bin\release\**\MyApp.dll" target="lib" />
</files>
</package>
In VS, the NuGet package shows this:
But again, I'm those dependencies are also being pulled in when using a project with target framework 4.5.1. Which I don't want. Any help is appreciated.