forked from stefanprodan/MvcThrottle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
c18f227
commit a516726
Showing
2 changed files
with
6 additions
and
18 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
13 changes: 4 additions & 9 deletions
13
.nuspec/MvcThrottle.nuspec → MvcThrottle/MvcThrottle.nuspec
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 |
---|---|---|
@@ -1,25 +1,20 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<version>1.0.0</version> | ||
<version>$version$</version> | ||
<authors>Stefan Prodan</authors> | ||
<owners>Stefan Prodan</owners> | ||
<id>MvcThrottle</id> | ||
<title>ASP.NET MVC Throttling Filter</title> | ||
<title>ASP.NET MVC Rate Limiter</title> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>MvcThrottle filter is designed for controlling the rate of requests that clients can make to a website based on IP address, request route and client identity. You can set multiple limits for different scenarios like allowing an IP to make a maximum number of calls per second, per minute, per hour or per day. You can define these limits to address all requests made to your website or you can scope the limits to each Controller, Action or URL, with or without query string params.</description> | ||
<copyright>Stefan Prodan 2014</copyright> | ||
<releaseNotes>If you are looking for the ASP.NET Core version please use AspNetCoreRateLimit package</releaseNotes> | ||
<copyright>Stefan Prodan 2014-2017</copyright> | ||
<tags>ASP.NET MVC, throttling, rate limits</tags> | ||
<projectUrl>https://github.com/stefanprodan/MvcThrottle</projectUrl> | ||
<language>en-US</language> | ||
<dependencies> | ||
<dependency id="Microsoft.AspNet.Mvc" version="5.1.0" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="..\MvcThrottle\bin\Release\MvcThrottle.dll" target="lib\net45" /> | ||
<file src="..\MvcThrottle\bin\Release\MvcThrottle.xml" target="lib\net45" /> | ||
<file src="..\MvcThrottle\bin\Release\MvcThrottle.pdb" target="lib\net45" /> | ||
<file src="..\MvcThrottle\**\*.cs" target="src" /> | ||
</files> | ||
</package> |