-
Notifications
You must be signed in to change notification settings - Fork 2
/
FakeHttp.nuspec
22 lines (21 loc) · 1.06 KB
/
FakeHttp.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>FakeHttp</id>
<version>0.1.2</version>
<title>FakeHttp</title>
<authors>Mark Melville</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Easily test your code that makes HTTP requests with this library of fakes.</description>
<summary>FakeHttp contains helpers that allow isolated testing of code that makes HTTP requests. Even though the code thinks it has a real object, all the responses are faked and so no actual HTTP request is made.</summary>
<releaseNotes>Added history property so tests can verify what what requests were made.</releaseNotes>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Net.Http" targetFramework="net40" />
</frameworkAssemblies>
<projectUrl>https://github.com/markmelville/FakeHttp</projectUrl>
<tags>fakes HttpClient mock HttpRequest</tags>
</metadata>
<files>
<file src="FakeHttp\bin\Release\FakeHttp.dll" target="lib\net40" />
</files>
</package>