ccnet+msbuild 相关

 

配置,自动编译相关 

http://www.cnblogs.com/ttzhang/category/161310.html 

配置web peloyment  project 

 http://www.cnblogs.com/ttzhang/archive/2008/11/10/1330321.html

http://social.msdn.microsoft.com/Forums/en-US/msbuild/thread/1c185645-cbec-4239-a368-ad95f2490a1b/ 

 发布web

<Target Name="AfterBuild">
    <Message Text="Copying to Deployment Dir:" />
    <Copy SourceFiles="@(Content)" DestinationFolder="..\PreCompiledWeb\HelloWorld\%(Content.RelativeDir)" />
    <CreateItem Include="$(OutputPath)\*">
        <Output TaskParameter="Include" ItemName="Binaries"/>
    </CreateItem>
    <Copy SourceFiles="@(Binaries)" DestinationFolder="..\PreCompiledWeb\HelloWorld\bin" />

</Target> 

 

比较 详细的 ccnet+msbuild http://www.cnblogs.com/icebutterfly/archive/2008/12/17/1356543.html 

posted @ 2011-05-08 21:58  kic  阅读(380)  评论(0编辑  收藏  举报