문제

I am trying to integrate Ajax minify in the build of VS 2010. We are using the syntax as shown below and it does work but I want the file to copied to a specific folder. Currently its creating the file in the root directory. How can i change this.

This is the syntax I am using

<AjaxMin Switches="-global:jQuery,$"
  JsSourceFiles="@(JS)"  JsCombinedFileName="xx.min.js"/>
도움이 되었습니까?

해결책

The solution was to use

<AjaxMin Switches="-global:jQuery,$"
 JsSourceFiles="@(JS)"  JsCombinedFileName="Scripts\xx.min.js"/>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top