download C# nunit to 2.x (#3432)

This commit is contained in:
wing328
2016-07-21 18:17:43 +08:00
committed by GitHub
parent a916696f28
commit f74bf84017
7 changed files with 38 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NUnit" version="3.2.1" targetFramework="net45" />
<package id="NUnit" version="2.6.4" targetFramework="net45" />
<package id="RestSharp" version="105.1.0" targetFramework="net45" developmentDependency="true" />
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net45" developmentDependency="true" />
</packages>

View File

@@ -179,9 +179,36 @@ namespace IO.Swagger.Client
/// <returns></returns>
public void AddDefaultHeader(string key, string value)
{
if (_defaultHeaderMap.ContainsKey(key))
_defaultHeaderMap.Remove(key);
_defaultHeaderMap.Add(key, value);
}
/// <summary>
/// Add Api Key Header.
/// </summary>
/// <param name="key">Api Key name.</param>
/// <param name="value">Api Key value.</param>
/// <returns></returns>
public void AddApiKey(string key, string value)
{
if (ApiKey.ContainsKey(key))
ApiKey.Remove(key);
ApiKey.Add(key, value);
}
/// <summary>
/// Sets the API key prefix.
/// </summary>
/// <param name="key">Api Key name.</param>
/// <param name="value">Api Key value.</param>
public void AddApiKeyPrefix(string key, string value)
{
if (ApiKeyPrefix.ContainsKey(key))
ApiKeyPrefix.Remove(key);
ApiKeyPrefix.Add(key, value);
}
/// <summary>
/// Gets or sets the HTTP user agent.
/// </summary>

View File

@@ -24,7 +24,7 @@ limitations under the License.
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4744D957-AA0D-4BF3-A0B6-60A13E6749BB}</ProjectGuid>
<ProjectGuid>{ACE32FB1-CE7D-4A06-B9D3-1955C51516CA}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Swagger Library</RootNamespace>