Visual Studio Express 2012 and Typescript output directory -


i've installed typescript plugin vs. change compiled js files output directory. js files being in same directory ts files. found solution said should install web essentials , can modify compiler settings. unfortunately, free vs express don't let me install 3rdparty things. it's ok, there other solution change output directory of js files? in command line simple --out flag.

i'm not familiar limitations of express, here's how in pro edition without web essentials:

open .csproj file inside project favorite text editor. property groups like:

<propertygroup condition="'$(configuration)' == 'debug'">     ... </propertygroup> <propertygroup condition="'$(configuration)' == 'release'">     ... </propertygroup> 

and inside both of add property so:

<typescriptoutdir>my/dir</typescriptoutdir> 

if open c:\program files (x86)\msbuild\microsoft\visualstudio\v11.0\typescript\microsoft.typescript.targets can see how properties map command line flags , how figured out.

like said don't know express , whether places limitations on modifying .csproj files let me know if works.


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -