├── .gitignore ├── Gitpad.csproj ├── Gitpad.sln ├── LICENSE ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md └── app.config /.gitignore: -------------------------------------------------------------------------------- 1 | *.suo 2 | bin 3 | obj 4 | _Resharper* 5 | *.user 6 | -------------------------------------------------------------------------------- /Gitpad.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/GitPad/HEAD/Gitpad.csproj -------------------------------------------------------------------------------- /Gitpad.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/GitPad/HEAD/Gitpad.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/GitPad/HEAD/LICENSE -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/GitPad/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/GitPad/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/GitPad/HEAD/README.md -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/GitPad/HEAD/app.config --------------------------------------------------------------------------------