Skip to content

Commit 2a9faeb

Browse files
authored
v1.0.0
1 parent bff78ab commit 2a9faeb

File tree

80 files changed

+3548
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+3548
-0
lines changed
781 KB
Binary file not shown.
772 KB
Binary file not shown.

QuickColorPicker-Setup/QuickColorPicker-Setup.vdproj

Lines changed: 1028 additions & 0 deletions
Large diffs are not rendered by default.
781 KB
Binary file not shown.
772 KB
Binary file not shown.
19.2 KB
Binary file not shown.
15.5 KB
Binary file not shown.

packages/Octokit.0.3.4/LICENSE.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2012 GitHub, Inc.
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of
4+
this software and associated documentation files (the "Software"), to deal in
5+
the Software without restriction, including without limitation the rights to
6+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
7+
the Software, and to permit persons to whom the Software is furnished to do so,
8+
subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
15+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
16+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19+
365 KB
Binary file not shown.

packages/Octokit.0.3.4/README.md

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Octokit - GitHub API Client Library for .NET
2+
3+
Octokit is a client library targeting .NET 4.5 and above that provides an easy
4+
way to interact with the [GitHub API](http://developer.github.com/v3/).
5+
6+
## Usage examples
7+
8+
Get public info on a specific user.
9+
10+
```c#
11+
var github = new GitHubClient(new ProductHeaderValue("MyAmazingApp"));
12+
var user = await github.User.Get("half-ogre");
13+
Console.WriteLine(user.Followers + " folks love the half ogre!");
14+
```
15+
16+
## Supported Platforms
17+
18+
* .NET 4.5 (Desktop / Server)
19+
* Xamarin.iOS / Xamarin.Android / Xamarin.Mac
20+
* Mono 3.x
21+
* Windows 8 / 8.1 Store Apps
22+
23+
## Getting Started
24+
25+
Octokit is available on NuGet.
26+
27+
```
28+
Install-Package Octokit
29+
```
30+
31+
## Build
32+
33+
Octokit is a single assembly designed to be easy to deploy anywhere. If you
34+
prefer to compile it yourself, you’ll need:
35+
36+
* Visual Studio 2012 or later, or Xamarin Studio
37+
* Windows 8 or higher to build and test the WinRT projects
38+
39+
To clone it locally click the "Clone in Windows" button above or run the
40+
following git commands.
41+
42+
```
43+
git clone [email protected]:octokit/Octokit.net.git Octokit
44+
cd Octokit
45+
.\build.cmd
46+
```
47+
48+
## Contribute
49+
50+
Visit the [Contributor Guidelines](https://github.com/octokit/octokit.net/blob/master/CONTRIBUTING.md)
51+
for more details.
52+
53+
## Build Server
54+
55+
The builds and tests for Octokit.net are run on [qed](https://github.com/half-ogre/qed/). This enables us to build and test incoming pull requests: http://half-ogre-qed.cloudapp.net/octokit/octokit.net
56+
57+
## Problems?
58+
59+
Octokit is 100% certified to be bug free. If you find an issue with our
60+
certification, please visit the [issue tracker](https://github.com/octokit/octokit.net/issues)
61+
and report the issue.
62+
63+
Please be kind and search to see if the issue is already logged before creating
64+
a new one. If you're pressed for time, log it anyways.
65+
66+
When creating an issue, clearly explain
67+
68+
* What you were trying to do.
69+
* What you expected to happen.
70+
* What actually happened.
71+
* Steps to reproduce the problem.
72+
73+
Also include any other information you think is relevant to reproduce the
74+
problem.
75+
76+
77+
## Copyright and License
78+
79+
Copyright 2013 GitHub, Inc.
80+
81+
Licensed under the [MIT License](https://github.com/octokit/octokit.net/blob/master/LICENSE.txt)

0 commit comments

Comments
 (0)