New Post: Usage with NuGet installation
The documentation at http://msbuildextensionpack.codeplex.com/wikipage?title=Samples&referringTitle=Documentation is very helpful for getting these working with a machine-based installation. But...
View ArticleNew Post: UpdateAssemblyInfo - CreateItem task failed
Hello, We are running MSBuild from CruiseControl.net. We have one branch that, when built on the build server via CC, fails with the following error: <target name="UpdateAssemblyInfo"...
View ArticleNew Post: Auto-Deploy script doesn't work with Check-In Policy
As part of a regular automated deployment MSBuild script, a file is checked for the content, any SQL in it is run against the database, the file is emptied and the next step is to check it back in...
View ArticleNew Post: Auto-Deploy script doesn't work with Check-In Policy
Nevermind. I figured it out using the OverrideText feature and it works successfully. Thanks anyway.
View ArticleNew Post: Creaste a Default Document IIS7 Using MSBuild Script
we are deploy application using MSBuild Script in IIS7.Application deployed successfully.But Default Document is not created.if anyone knows please tell me.How to create Default Document IIS7 Using...
View ArticleNew Post: NuGet Package MSBuild.Extension.Pack Design Issue
Nuget packages like MSBuild.Extension.Pack that provide tools instead of code libraries, is better installed as part of the build script that requires them. That way you won't have to have a "fake"...
View ArticleNew Post: UpdateAssemblyInfo - CreateItem task failed
try this <Attrib Files="@(UpdateAssemblyInfoFiles)" Normal="true" /> <Message Text="%(UpdateAssemblyInfoFiles.Identity)"/> <AssemblyInfo...
View ArticleNew Post: NuGet Package MSBuild.Extension.Pack Design Issue
I raised a work item request (http://msbuildextensionpack.codeplex.com/workitem/11412) to also produce a nuget package (.nupkg) as part of the build. If anyone of you have similar requirement, please...
View ArticleNew Post: Sql2008.Database Restore fails with...
Hi,The following tasks work OK:<MSBuild.ExtensionPack.Sql2008.Database TaskAction="Backup" DatabaseItem="Assassin" DataFilePath="..\..\DBBackups\Assassin.bak"/>...
View ArticleNew Post: Checkout, Add, Checkin
I've got a little MSBuild file I'm working up that will execute from my build process template after a successful build. The idea is to take the output of the build (binaries) from the drop folder,...
View ArticleNew Post: error on Add to GAC with MSBuild Extensions
I'm having a little trouble with getting AddAssembly to work. I jhave already managed get the remove assembly to work but the add is giving me problems.Here is the XML.: <Target Name="AddToGAC">...
View ArticleNew Post: Checkout, Add, Checkin
I went with a copy instead of an Add, and have gotten this to work. However, I've still got a hard-coded path that I need to parameterize in order to make this generic. <!-- Add the files from...
View ArticleNew Post: Remote registration of a dll
Is it possible to register a component dll, i.e. emulate regsvr32, on a remote computer using MSBUILD Extensions without introducing a command file?ThanksRegards
View ArticleNew Post: Remote registration of a dll
it's not the regsvr32 is the regsvcs i want to use remotly. Currently I will be using PsExec from the framowrok command line to use regsvcs remotely. It would be nice if i could do it from the...
View ArticleNew Post: UndoCheckout - HELP!!!
I can’t seem to find any good information on the use of the UndoCheckout task action for MSBuild.ExtensionPack.VisualStudio.TfsSource. My (perhaps naïve)impression is that this is similar to a tf undo,...
View ArticleNew Post: UndoCheckout - HELP!!!
Allow me to elaborate a bit more.My question is how to get enough information to the TF command (or UndoCheckout extension) to have it undo a checkout from another user. I know it’s possible using TF...
View ArticleNew Post: IIS7 application authentication
Hi Mike, is it possible to set the authentication settings at the application level? For example I'm creating an Application under Default Web Site. The web site has anonymous authentication enabled,...
View ArticleNew Post: Checkout, Add, Checkin
This forum is not very useful, I'm afraid. Nonetheless, here's how I solved this problem:<!-- Check out the binaries from...
View Article