The idea is based on a gist by @jimbojsb.
You can use Pygments or Highlight.
brew install python
| namespace Analogy | |
| { | |
| /// <summary> | |
| /// This example shows that a library that needs access to target .NET Standard 1.3 | |
| /// can only access APIs available in that .NET Standard. Even though similar the APIs exist on .NET | |
| /// Framework 4.5, it implements a version of .NET Standard that isn't compatible with the library. | |
| /// </summary>INetCoreApp10 | |
| class Example1 | |
| { | |
| public void Net45Application(INetFramework45 platform) |
The idea is based on a gist by @jimbojsb.
You can use Pygments or Highlight.
brew install python
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| // Adapted from http://devio.wordpress.com/2011/01/21/get-name-of-nested-property-as-string-value/ | |
| public static string GetPropertyName<T, TValue>(this T model, Expression<Func<T, TValue>> expression) where T : class | |
| { | |
| var memberExpression = (MemberExpression)expression.Body; | |
| var memberExpressionOrg = memberExpression; | |
| var Path = ""; | |
| while (memberExpression != null && memberExpression.Expression.NodeType == ExpressionType.MemberAccess) |
Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").
Author: Chris Jacob @_chrisjacob
Tutorial (Gist): https://gist.github.com/833223