• Installing .NET Core on Mac

    You can install .NET Core on your MacOs quite easily. You can find instructions on official Microsoft page. Or just make these steps:

    1. Install openssl library with either homebrew or macports
    Homebrew:

    macports:

    In any case make sure you are under admin and check your path to installed openssl lib (/opt/local/lib/ or /usr/local/opt/openssl/lib/). It may differs depending on your configs.

    2. Download and install official .NET Core installer.

    3. Make sure everything went well by typing in terminal: dotnet --info

    4. Try to create and run a project:

    You should see "Hello World!" in Terminal.

  • Comparison table of .NET test frameworks

    You can see comparison table of methods/attributes/peculiarities of different .NET test frameworks by this link: http://xunit.github.io/docs/comparisons.html

  • .gitignore for Visual Studio C# projects

    If you need ready-to-use .gitignore file for your Visual Studio/C# projects, here it is:
    https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

    This file is a part of gitignore project which accumulates .gitignore for different languages/technologies.