Skip to content

Commit

Permalink
NuGet publish with AppVeyor
Browse files Browse the repository at this point in the history
stefanprodan committed Jan 11, 2017
1 parent c18f227 commit a516726
Showing 2 changed files with 6 additions and 18 deletions.
11 changes: 2 additions & 9 deletions MvcThrottle.sln
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30110.0
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvcThrottle", "MvcThrottle\MvcThrottle.csproj", "{17C09440-DDBF-44B8-8410-C888525E9CA5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvcThrottle.Demo", "MvcThrottle.Demo\MvcThrottle.Demo.csproj", "{8E985640-9586-47F0-9443-5D4697302A24}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{BE71106B-A50D-4B93-B15E-14AA18CA0EDC}"
ProjectSection(SolutionItems) = preProject
.nuget\NuGet.Config = .nuget\NuGet.Config
.nuget\NuGet.exe = .nuget\NuGet.exe
.nuget\NuGet.targets = .nuget\NuGet.targets
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuspec", ".nuspec", "{5C611BCC-78B8-4227-A319-C4C3421AE6D9}"
ProjectSection(SolutionItems) = preProject
.nuspec\MvcThrottle.nuspec = .nuspec\MvcThrottle.nuspec
13 changes: 4 additions & 9 deletions .nuspec/MvcThrottle.nuspec → MvcThrottle/MvcThrottle.nuspec
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>

0 comments on commit a516726

Please sign in to comment.