Unable to compile vdproj with devenv – ‘targeting ‘x64’ is not compatible with the project’s target platform ‘x86”

You have to mark the Setup project as a 64-bit installer. Your Setup project’s TargetPlatform property in the Properties window, change it from x86 (the default) to x64. Also make sure you deploy the 64-bit version of log4net and that your C# project’s TargetPlatform setting is Any CPU. And make sure that you actually need … Read more

Why would I use TypeScript and Babel together?

In my opinion you transpile TypeScript code to ES6 by using typescript and then re-transpile it to es5/es3 using babel to use in most javascript run times. Now because typescript compiler gives you es6 javascript you can do tree-shaking which is only supported for es6 module. And after tree-shaking your es6 javascript you can now … Read more

Gradle color output

Found the answer! According to this gradle forum post, there’s no public interface for coloring the output of the logger. You are free to use the internal classes, but those may change in future versions. In the gradle script, put at the top: Older Gradle: import org.gradle.logging.StyledTextOutput; import org.gradle.logging.StyledTextOutputFactory; import static org.gradle.logging.StyledTextOutput.Style; Gradle 3.3+: import … Read more