Skip to content

Instantly share code, notes, and snippets.

View AdmiringWorm's full-sized avatar

Kim J. Nordmo AdmiringWorm

View GitHub Profile
@ferventcoder
ferventcoder / _TODO.txt
Last active August 20, 2017 07:48
Chocolatey v0.10.8 Packaging
TODO
1. Determine Package Use:
Organization? Internal Use? - You are not subject to distribution
rights when you keep everything internal. Put the binaries directly
into the tools directory (as long as total nupkg size is under 1GB).
When bigger, look to use from a share or download binaries from an
internal location. Embedded binaries makes for the most reliable use
of Chocolatey. Use `$fileLocation` (`$file`/`$file64`) and

Advanced

editorconfig name possible values
dotnet_sort_system_directives_first true , false

Indentation Options

editorconfig name possible values
csharp_indent_block_contents true , false
csharp_indent_braces true , false
@FeodorFitsner
FeodorFitsner / nunit3-runners.cmd
Last active December 1, 2015 01:16
Overriding NUnit runners with 3.0
set NUNIT3_HOME=C:\Tools\NUnit3
appveyor DownloadFile https://github.com/nunit/nunit/releases/download/3.0.0-beta-3/nunit-3.0.0-beta-3.zip
7z x -o%NUNIT3_HOME% nunit-3.0.0-beta-3.zip > NUL
move %NUNIT3_HOME%\bin\nunit3-console.exe %NUNIT3_HOME%\bin\nunit-console.exe
set PATH=%NUNIT3_HOME%\bin;%PATH%