This repository has been archived by the owner on Nov 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6074c28
commit 521a8ef
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<version>1.0.0</version> | ||
<authors>Stefan Prodan</authors> | ||
<owners>Stefan Prodan</owners> | ||
<id>WebApiThrottle</id> | ||
<title>ASP.NET Web API throttling handler</title> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>ASP.NET Web API Throttling handler is designed for controlling the rate of requests that clients can make to an API based on IP address, client API key and request route.</description> | ||
<copyright>Stefan Prodan 2013</copyright> | ||
<tags>ASP.NET Web API, throttling, rate limits</tags> | ||
<projectUrl>https://github.com/stefanprodan/WebApiThrottle</projectUrl> | ||
<language>en-US</language> | ||
<dependencies> | ||
<dependency id="Microsoft.AspNet.WebApi" version="5.0.0" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\WebApiThrottle\bin\Release\WebApiThrottle.dll" target="lib\net45" /> | ||
<file src="..\WebApiThrottle\bin\Release\WebApiThrottle.xml" target="lib\net45" /> | ||
<file src="..\WebApiThrottle\bin\Release\WebApiThrottle.pdb" target="lib\net45" /> | ||
<file src="..\WebApiThrottle\**\*.cs" target="src" /> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters