Merge pull request #956 from octokit/vs2015-support

VS2015 migration
This commit is contained in:
Brendan Forster
2015-11-04 13:28:04 -08:00
18 changed files with 88 additions and 19 deletions
@@ -179,11 +179,21 @@ namespace Octokit
Task DeleteFile(string owner, string name, string path, DeleteFileRequest request);
}
/// <summary>
/// The archive format to return from the server
/// </summary>
public enum ArchiveFormat
{
/// <summary>
/// The TAR archive format
/// </summary>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Tarball")]
[Parameter(Value = "tarball")]
Tarball,
/// <summary>
/// The ZIP archive format
/// </summary>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Zipball")]
[Parameter(Value = "zipball")]
Zipball