How to prevent visual studio 2017 from build javascript?

Simple Answer In your csproj file, add the following line to the existing PropertyGroup block: <PropertyGroup> <TypeScriptCompileBlocked>true</TypeScriptCompileBlocked> </PropertyGroup> If adding .ts or .tsx files to your project causes your project file to be modified, you may need to apply the following fix. See the bug report for more details. <ItemGroup> <None Remove=”**/*.ts;**/*.tsx” /> <Content Remove=”**/*.ts;**/*.tsx” … Read more

Android gradle build and the support library

This is now possible by downloading Android Support Repository from the SDK Manager, and replacing compile files(“libs/android-support-v4.jar”) with compile ‘com.android.support:support-v4:13.0.0’ This has to be done for all projects that use the support library. The Android Support Repository is automatically added to your list of repositories by the build system (Unsure of which part adds it, … Read more