Skip to content

Commit

Permalink
Merge branch 'release/0.2.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
louisfischer committed Jul 24, 2017
2 parents 47e61cd + f46437f commit e937cb8
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 28 deletions.
52 changes: 27 additions & 25 deletions nuspec/nuget/Cake.Http.nuspec
Original file line number Diff line number Diff line change
@@ -1,28 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>Cake.Http</id>
<version>0.0.0</version>
<authors>louisfischer</authors>
<owners>louisfischer,cake-contrib</owners>
<title>Cake.Http</title>
<description>HttpClient addin for cake build.</description>
<summary>HttpClient addin for cake build.</summary>
<licenseUrl>https://github.com/cake-contrib/Cake.Http/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/cake-contrib/Cake.Http</projectUrl>
<iconUrl>https://cdn.rawgit.com/cake-contrib/graphics/a5cf0f881c390650144b2243ae551d5b9f836196/png/cake-contrib-medium.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright (c) Cake Contributions Organization 2017</copyright>
<releaseNotes></releaseNotes>
<tags>cake script build httpclient web</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Net.Http" />
<frameworkAssembly assemblyName="System.Web.Extensions" />
</frameworkAssemblies>
</metadata>
<files>
<file src="Cake.Http.dll" target="lib/net45" />
<file src="Cake.Http.pdb" target="lib/net45" />
<file src="Cake.Http.xml" target="lib/net45" />
</files>
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>Cake.Http</id>
<version>0.0.0</version>
<authors>louisfischer</authors>
<owners>louisfischer,cake-contrib</owners>
<title>Cake.Http</title>
<description>HttpClient addin for cake build.</description>
<summary>HttpClient addin for cake build.</summary>
<licenseUrl>https://github.com/cake-contrib/Cake.Http/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/cake-contrib/Cake.Http</projectUrl>
<iconUrl>https://cdn.rawgit.com/cake-contrib/graphics/a5cf0f881c390650144b2243ae551d5b9f836196/png/cake-contrib-medium.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright (c) Cake Contributions Organization 2017</copyright>
<releaseNotes></releaseNotes>
<tags>cake script build httpclient web</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Net.Http" />
<frameworkAssembly assemblyName="System.Web.Extensions" />
</frameworkAssemblies>
</metadata>
<files>
<file src="System.Net.Http.dll" target="lib/net45" />
<file src="System.Web.Extensions.dll" target="lib/net45" />
<file src="Cake.Http.dll" target="lib/net45" />
<file src="Cake.Http.pdb" target="lib/net45" />
<file src="Cake.Http.xml" target="lib/net45" />
</files>
</package>
9 changes: 6 additions & 3 deletions src/Cake.Http/Cake.Http.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,12 @@
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Net.Http">
<Private>True</Private>
</Reference>
<Reference Include="System.Web.Extensions">
<Private>True</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="CakeHttpClientHandler.cs" />
Expand Down

0 comments on commit e937cb8

Please sign in to comment.