├── .gitignore ├── Cake.Sample.sln ├── README.md ├── Settings.StyleCop ├── src ├── Cake.Sample.Console │ ├── App.Release.config │ ├── App.config │ ├── Cake.Sample.Console.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── Cake.Sample.Lib │ ├── Cake.Sample.Lib.csproj │ ├── Cake.Sample.Lib.nuspec │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SuperClass.cs │ └── packages.config └── Cake.Sample.Web │ ├── App_Start │ └── RouteConfig.cs │ ├── Cake.Sample.Web.csproj │ ├── Content │ ├── Site.css │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── Controllers │ └── HomeController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Scripts │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ └── modernizr-2.6.2.js │ ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ └── _Layout.cshtml │ ├── _ViewStart.cshtml │ └── web.config │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ └── packages.config └── test └── Cake.Sample.Lib.Tests ├── Cake.Sample.Lib.Tests.csproj ├── Properties └── AssemblyInfo.cs ├── SuperClassTests.cs └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /Cake.Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/Cake.Sample.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/README.md -------------------------------------------------------------------------------- /Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/Settings.StyleCop -------------------------------------------------------------------------------- /src/Cake.Sample.Console/App.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Console/App.Release.config -------------------------------------------------------------------------------- /src/Cake.Sample.Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Console/App.config -------------------------------------------------------------------------------- /src/Cake.Sample.Console/Cake.Sample.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Console/Cake.Sample.Console.csproj -------------------------------------------------------------------------------- /src/Cake.Sample.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Console/Program.cs -------------------------------------------------------------------------------- /src/Cake.Sample.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Cake.Sample.Lib/Cake.Sample.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Lib/Cake.Sample.Lib.csproj -------------------------------------------------------------------------------- /src/Cake.Sample.Lib/Cake.Sample.Lib.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Lib/Cake.Sample.Lib.nuspec -------------------------------------------------------------------------------- /src/Cake.Sample.Lib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Lib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Cake.Sample.Lib/SuperClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Lib/SuperClass.cs -------------------------------------------------------------------------------- /src/Cake.Sample.Lib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Lib/packages.config -------------------------------------------------------------------------------- /src/Cake.Sample.Web/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Cake.Sample.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Cake.Sample.Web.csproj -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Content/Site.css -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Content/bootstrap.css -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Content/bootstrap.min.css -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Global.asax -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Global.asax.cs -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Scripts/bootstrap.js -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Views/web.config -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Web.Debug.config -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Web.Release.config -------------------------------------------------------------------------------- /src/Cake.Sample.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/Web.config -------------------------------------------------------------------------------- /src/Cake.Sample.Web/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/Cake.Sample.Web/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/Cake.Sample.Web/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/Cake.Sample.Web/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/Cake.Sample.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/src/Cake.Sample.Web/packages.config -------------------------------------------------------------------------------- /test/Cake.Sample.Lib.Tests/Cake.Sample.Lib.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/test/Cake.Sample.Lib.Tests/Cake.Sample.Lib.Tests.csproj -------------------------------------------------------------------------------- /test/Cake.Sample.Lib.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/test/Cake.Sample.Lib.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/Cake.Sample.Lib.Tests/SuperClassTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/test/Cake.Sample.Lib.Tests/SuperClassTests.cs -------------------------------------------------------------------------------- /test/Cake.Sample.Lib.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luisgoncalves/cake-sample/HEAD/test/Cake.Sample.Lib.Tests/packages.config --------------------------------------------------------------------------------