Created
February 27, 2013 17:57
-
-
Save surrealist/5050001 to your computer and use it in GitHub Desktop.
Add to csproj to enable TypeScript 0.8.2 compile-on-save.
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
| <PropertyGroup Condition="'$(Configuration)' == 'Debug'"> | |
| <TypeScriptTarget>ES5</TypeScriptTarget> | |
| <TypeScriptIncludeComments>true</TypeScriptIncludeComments> | |
| <TypeScriptSourceMap>true</TypeScriptSourceMap> | |
| </PropertyGroup> | |
| <PropertyGroup Condition="'$(Configuration)' == 'Release'"> | |
| <TypeScriptTarget>ES5</TypeScriptTarget> | |
| <TypeScriptIncludeComments>false</TypeScriptIncludeComments> | |
| <TypeScriptSourceMap>false</TypeScriptSourceMap> | |
| </PropertyGroup> | |
| <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment