摘要:
vs2010 命令行下用 msbuild 发布web站点先来看一下原来 vs2008 的代码msbuild website\websiteApp.csproj /t:ResolveReferences;Compile /t:_CopyWebApplication /p:Configuration=Release /p:WebProjectOutputDir=r:\website /p:OutputPath=r:\website\bin再看看 vs2010 的代码path C:\Windows\Microsoft.NET\Framework\v4.0.30319msbuild website\w 阅读全文
摘要:
<PropertyGroup> <PostBuildEvent> if "$(ConfigurationName)" == "Release" goto Release goto End :Release copy *.* ..\..\..\..\Release\ :End </PostBuildEvent> </PropertyGroup> 阅读全文
摘要:
http://blog.csdn.net/wwlearn/article/details/5457310<authorization><denyusers="?"/><allowusers="*"/></authorization>?:匿名用户,也就是没有登入的用户不能访问。*:所有用户,所有用户都不能访问。<denyusers="?"/>、是拒绝匿名用户访问<allowusers="*"/>允许所有的用户访问包括匿名用户<authent 阅读全文