This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add this in your global gradle.properties file | |
// at ~/.gradle/gradle.properties | |
// Enable Gradle Daemon | |
org.gradle.daemon=true | |
// Enable Configure on demand | |
org.gradle.configureondemand=true | |
//Enable parallel builds | |
org.gradle.parallel=true | |
// Enable Build Cache | |
android.enableBuildCache=true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://download.docker.com/win/stable/Docker%20for%20Windows%20Installer.exe |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# use /MT:1 when the files are big, otherwise if you cancel you'll have 128 big unfinished files instead of a few finished ones | |
Robocopy.exe /MIR /MT:128 /R:1 /W:1 /LOG:nul /NFL /NDL /NJH /NJS /nc /ns /np <SRC> <DEST> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static Type[] GetAllTypesThatHaveBenchmarkMethods() | |
{ | |
return Assembly.GetExecutingAssembly().GetTypes().Where( | |
type => type.GetMethods().Any( | |
method => method.GetCustomAttributes(typeof(BenchmarkAttribute)).Any() | |
) | |
).ToArray(); | |
} | |
var benchmarkTypes = GetAllTypesThatHaveBenchmarkMethods(); |
OlderNewer