active questions tagged msbuild - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T08:41:40Zhttp://stackoverflow.com/feeds/tag/msbuildhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1807082/msbuild-and-visual-studio-project-configuration-problem1msbuild and visual studio project configuration problemSteve2009-11-27T06:23:53Z2009-12-08T20:28:42Z
<p>I have a solution containing a lot of projects and installer projects. One project uses a third party package. The package comes with a native DLL and a .net wrapper DLL. In order for the code to work, the .net wrapper DLL needs to find the native DLL in runtime. But the code never directly refers to the native DLL in compile time (the code talks to .net wrapper DLL in compile time).</p>
<p>Now I have to choose proper way to deploy the native DLL, during compile time on a programmer's machine and during installing time on a user machine.</p>
<p>Basically I have two options, either to put the native DLL to Windows System folder or to put the native DLL in the local folder containing the exe file.</p>
<p>To put the native DLL to system folder, I need a post-build script to xcopy the file to the directory after building the solution. I also need to create a System Folder output in installer project for installer to work on a client machine. I don't know whether copying files to system folder is a good idea or not. For this solution, every time someone (else in the big team) creates a new installer, he or she has to remember to create System Folder output and add the native DLL under the configuration otherwise his or her installer will not install a workable piece of software on a user machine.</p>
<p>To put the native DLL to local folder, I have the following two ways:
1. Use a post-build script. This solution, I have to find out every executable project in my big solution that has a reference to the project using the native DLL and link the post-build script to every such executable project. In the future, when someone (else in the big team) creates a new executable project with the same kind, he or she has to remember to link the same post-build script otherwise the executable wouldn't be able to find the native DLL. This is what I really don't like, people tend to forget.</p>
<ol>
<li>I can add the native DLL to the project that uses it and in the DLL's property configuration, set it to "Copy If Newer". This way, the native DLL will be copied to the project's output folder and to every project that refers to the project. This way, I don't have to remember anything. The native DLL will be copied to the local folder of every dependent project.</li>
</ol>
<p>This seems a good solution. But msbuild command seems not being able to handle this situation cleverly. For example, suppose project A directly uses native DLL and I add the native DLL to project A. Project B refers to project A and project C refers to project B and project A. if using msbuild to build the solution, the native DLL will be copied repeatedly to the output folder of project C 3 times, one for reference to project A, one for reference to project B, one for reference of project B to project A. In my big solution, towards the end of the dependency link, the native DLL will be copied exponentially many times to the same output folder, regardless of the "Copy If Newer" setting. This takes up tremendous amount of time to build the whole solution.</p>
<p>Now I totally have no idea what is the best solution for my situation. For anyone who uses native DLLs, how do you deploy the DLL so 1. it is convenient for both deploying on developer machine (compile and run) and on user machine (install and run), 2. developers in big team don't have to remember anything when he or she adds new project/installer to the solution, 3. smart enough build manner that avoids unnecessary redundant actions. Thank you for any hint, tutorial on Web, suggestion or clever teach in advance.</p>
http://stackoverflow.com/questions/1867107/trigger-config-transformation-in-tfs-2010-or-msbuild0trigger config transformation in TFS 2010 or msbuildgrenade2009-12-08T13:52:07Z2009-12-08T14:56:17Z
<p>I'm attempting to make use of <a href="http://msdn.microsoft.com/en-us/library/dd465322%28VS.100%29.aspx" rel="nofollow">configuration transformations</a> in a continuous integration environment.</p>
<p>I need a way to tell the TFS build agent to perform the transformations. I was kind of hoping it would just work after discovering the config transform files (web.qa-release.config, web.production-release.config, etc...). But it doesn't.</p>
<p>I have a TFS build definition that builds the right configurations (qa-release, production-release, etc...) and I have some specific .proj files that get built within these definitions and those contain some environment specific parameters eg:</p>
<pre><code><PropertyGroup Condition=" '$(Configuration)'=='production-release' ">
<TargetHost Condition=" '$(TargetHost)'=='' ">qa.web</TargetHost>
...
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)'=='qa-release' ">
<TargetHost Condition=" '$(TargetHost)'=='' ">production.web</TargetHost>
...
</PropertyGroup>
</code></pre>
<p>I know from the output that the correct configurations are being built. Now I just need to learn how to trigger the config transformations. Is there some hocus pocus that I can add to the final .proj in the build to kick off the transform and blow away the individual transform files?</p>
http://stackoverflow.com/questions/1867180/copy-files-to-a-remote-server-via-rdp-using-a-script1Copy files to a remote server via RDP using a scriptgrenade2009-12-08T14:05:15Z2009-12-08T14:50:30Z
<p>We have a couple production servers that are configured to only allow access via RDP. There are no acessible shares. The dev team have no say in changing this setup but we want to automate code deployments to these machines. Presently we have to set Remote Desktop to share a local drive with the server, then RDP to the server and manually copy the deployment.</p>
<p>Any one know of a way to tunnel over RDP and drop files to a given directory on the remote host from the command line? The instructions will need to be included in an MSBuild configuration.</p>
http://stackoverflow.com/questions/1862006/is-it-possible-to-build-using-a-net-version-without-installing-that-version1Is it possible to build using a .NET version without 'installing' that version?Overridden2009-12-07T18:38:08Z2009-12-08T05:33:51Z
<p>I would like to have in my repository as tagged or submodules the different versions of .NET like is possible with other external products nunit, ninject, rhinomocks.
ProjectX is created with .NET 3.0 and nunit 2.4.x
Projecty is created with .NET 3.5 and nunit 2.5.x
Project Z is created with .NET 4.0B2 and a preproduction release of nunit</p>
<p>I would like to do this to be able to make changes from a machine without haveing to make changes to that machine, like updateing it to the latest version of .NET if it isn't.
If I want to change a 3.0, 3.5 or even 4.0B2 project on a machine that is still at 2.0 for example (maybe it's not mine nor do I have admin rights). I would like to checkout the project, the version of .net it requires (and other versioned libraries nunit, ninject, rhinomocks etc from the repository) make my change using Notepad2 or someother NON-Visual Studio editor (as VS would require an installation as well as the framework installed), run the build script and commit/push the changes. When that is done delete the checked out/cloned directories and files as if I was never even on that machine.</p>
<p>Background:
My repository is composed of many smaller unrelated projects, not like just one huge web app/site.
Why maintain versions of external libraries? Because I don't always want to update ALL projects at once. If I do there's a script for that.
Every developer is a telecommuting consultant. Who knows what's on their machine? Who cares everything(except .NET framework) is pointed to through the build script.
Maybe my machine dies and I need to use my grandmas. Maybe I'm on vacation and someones code is broke (not mine obviously) and I need to use the hotels.</p>
http://stackoverflow.com/questions/983051/publish-clickonce-app-with-msbuild0Publish ClickOnce app with MSBuildJeremy E2009-06-11T19:14:18Z2009-12-08T01:56:31Z
<p>I need a way to use MSBuild to publish a ClickOnce App to multiple PublishDir(s). I have four environment (dev, qa, model, prod) and need to generate seperate ClickOnce PublishDir(s) for each because the config files are different. One of the main issues is that MSBuild doesn't create a publish.htm file. Any help would be appreciated.</p>
http://stackoverflow.com/questions/1767212/how-do-i-use-msbuild-on-a-c-project-with-no-compilable-code0How do I use MSBuild on a C# project with no compilable codeCarter2009-11-19T23:07:29Z2009-12-07T23:21:29Z
<p>I have a C# web app project which actually has no ASP.Net or C# in it. It's just a single html page with some Javascript, CSS, and a couple of images.</p>
<p>I want to use MSBuild to deploy a version of this app to an output folder with minified JS and CSS.</p>
<p>With the following code, I get an error "CSC: fatal error CS2008: No inputs specified." I'm guessing because the there is no actual C# code to compile but I'm not sure.</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<CssTidy>..\build_tools\csstidy.exe</CssTidy>
</PropertyGroup>
<PropertyGroup>
<DeploymentFolder>Test\</DeploymentFolder>
<SourceProject>..\..\Test\Test.csproj</SourceProject>
</PropertyGroup>
<Import Project="Common.Web.targets" />
<ItemGroup>
<CssFiles Include="..\..\Test\CSS\stylesheet.css" />
<ScriptFiles Include="..\..\Test\JavaScript\javascript.js"/>
</ItemGroup>
<Target Name="compress_css">
<Attrib Files="%(CssFiles.FullPath)" ReadOnly="false"/>
<Exec Command="$(CssTidy) %(CssFiles.FullPath) %(CssFiles.FullPath) --template=highest" />
</Target>
<Target Name="compress_js">
<Attrib Files="%(ScriptFiles.FullPath)" ReadOnly="false"/>
<JSCompress Files="%(ScriptFiles.FullPath)"></JSCompress>
</Target>
<Target Name="call_targets">
<CallTarget Targets="compress_css"/>
<CallTarget Targets="compress_js"/>
</Target>
</Project>
</code></pre>
<p>How can I accomplish this? </p>
http://stackoverflow.com/questions/1475989/msbuild-stops-on-the-first-error-when-called-inside-nant-script0MSBuild stops on the first error when called inside NAnt script ?henrik2009-09-25T08:00:59Z2009-12-07T17:00:08Z
<p>I'm trying to build a VS 2008 solution in NAnt, but it seems msbuild stops the build process after the first compilation errror has occured. </p>
<p>In MSBuild there is a "ContinueOnError=true" or "StopOnFirstFailure=false" attribute, but how to specify this in NAnt ? The failonerror="false"does not solve the problem:</p>
<p></p>
http://stackoverflow.com/questions/1714289/building-a-vs2008-net-3-0-solution-without-installing-net-3-5-on-build-server0Building a VS2008 .NET 3.0 solution without installing .NET 3.5 on build serverJonathan 2009-11-11T10:20:57Z2009-12-07T15:28:50Z
<p>I am developing using 3.0 and VS 2008. </p>
<p>The problem is my build server does not have 3.5 installed and therefore I cant build the solution as MSBuild for 2.0 will not support the VS 2008 solution file. </p>
<p>There is no easy answer to this besides downgrading to VS 2005. </p>
<p>Any ideas folks?</p>
http://stackoverflow.com/questions/1859328/setting-assemblyfileversion-with-msbuild-call0Setting AssemblyFileVersion with MSBuild-call?martin2009-12-07T11:04:39Z2009-12-07T11:51:44Z
<p>Hello,</p>
<p>We have a batch-based buildprocess and we are using MSBuild only for compiling our project-files from visual studio. We also have integrated wix into our build-process. To set the version of our software we specify in the main-build-script some environment variables, that we use during the build-process.
My problem is, that i have to set the FileVersion of the Assembly (AssemblyFileVersion) in my assembly-informations.
Is there a way to give the MSBuild-call a property with the version to set? Like this (this doesn't work):</p>
<pre><code>%dotnetdir%msbuild.exe Viewer.csproj /property:Configuration=Release /property:Platform=AnyCPU /property:AssemblyFileVersion=%major%.%minor%.%build%
</code></pre>
<p>The resulting assembly should have the fileversion <code>%major%.%minor%.%build%</code>.
It's pain for me to set the AssemblyFileVersion-setting in all projects. And a program which is doing this is against my philosphy (i don't want to change my source with automated processes). The version should be set through the build-script. It is not necessary that the AssemblyFileVersion is set in the AssemblyInfo.cs</p>
<p>Or is there a possibility with MSBuild to specify a xml-configuration-file which describes the assembly-informations?</p>
<p>Would be great if there are any advices.</p>
<p>greetings, thanks,
Martin</p>
http://stackoverflow.com/questions/1858855/subversion-oddity-svn-info-revision-higher-than-last-changed-rev-on-project-fol0Subversion oddity - svn info revision higher than last changed rev on project folderWim Hollebrandse2009-12-07T09:32:44Z2009-12-07T10:05:30Z
<p>Got something going on I can't explain.</p>
<p>I have a working copy of my project - done svn update (which says: Updated to revision 1895), I know it's the latest. When I perform an <code>svn info</code> on the project folder, the Revision is 1895, but the Last Changed Rev is 1888.</p>
<p>Inspecting the log using TortoiseSVN shows 1888 as the last revision, no trace of 1895. An <code>svn log</code> on 1895 is empty, and an <code>svn diff</code> between 1895 and 1888 is empty as well, ie. no differences.</p>
<p>How did I somehow end up with some rogue revision that hasn't really changed anything? It basically is causing the build server (thinks it's on 1888) to be out of sync with my MSBuild SvnVersion task (thinks revision is 1895).</p>
<p>Any suggestions appreciated.</p>
<p><strong>Edit:</strong> If Revision will always show the latest revision for the whole repository, it means that things like SvnVersion MSBuild task (which uses svnversion.exe, but exhibits similar behaviour) don't display the correct revision for when you have a multiple project single repository, you will need to use "Last Changed Rev" for your version number.</p>
<p>As a result, now rolling my own SvnLastChangedRev MSBuild task.</p>
http://stackoverflow.com/questions/1847175/clearing-externals-during-a-subversion-tag-running-from-msbuild0Clearing externals during a subversion tag running from MSBuildildev2009-12-04T14:11:39Z2009-12-04T14:11:39Z
<p>Hi,</p>
<p>I'm using SvnCopy (from the MSBuild community tasks) to create a tag in Subversion. What I would like to do is for the Externals on any folders in the trunk to not be copied during the process. Is this possible?</p>
<p>TIA</p>
http://stackoverflow.com/questions/1845427/visual-studio-2008-nant-msbuild-how-we-use-this-for-automate-is-nant-work-fo0Visual studio 2008 & nant , msbuild how we use this for automate? Is nant work for vs2008?umeshbuagde2009-12-04T07:35:54Z2009-12-04T07:40:17Z
<p>I am working on a windows as well as web projects. We currently use Visual Studio to build our solution using visual studio 2008.</p>
<p>I would like to move to a more powerful build system such as Nant or MsBuild for atomate.</p>
<p>What are the ways & how i do this?</p>
<p>Currntly we use Visual source safe & mercurial(hg) as source control
How does this all integrate with Source Control?</p>
<p>Help me all the ways..
Thanks!</p>
http://stackoverflow.com/questions/1558589/precompiling-asp-net-web-application-with-msbuild1Precompiling ASP.NET Web application with MSBuildmidnightoil2009-10-13T07:04:10Z2009-12-04T06:00:04Z
<p>I have a c# web application project in Visual Studio 2008 that I want to precompile for deployment. After looking at various options, it seems all of them have some issues - perhaps someone could give their thoughts on this:</p>
<p>The project is under source control and also contains a lot of files that are excluded from project.</p>
<p>Web Deployment Projects does not work. If I try to use a wdp to compile, aspnet_compiler.exe will also try to compile all the excluded files. I don't want to maintain an exclude list in the msbuild script.</p>
<p>Is there a way to tell msbuild only to use the files/items that are specified in the csproj file, copy these to an intermediate folder and have aspnet_complier.exe build from this copy that does not contain any of the excluded files?</p>
<p>The website has depencies to 3 other csproj files.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1843014/setting-up-stylecop-for-team-development0Setting up StyleCop for team developmentJoe2009-12-03T21:24:13Z2009-12-03T22:55:31Z
<p>We are trying to setup stylecop for a team development environment. So far what we have done is:</p>
<ul>
<li>Checked the files into source control</li>
<li>Create an environment variable on every machine that points to that location (each dev has source checked out to a different location, this solves that)</li>
<li>Add the tag to the project as follows: </li>
</ul>
<p>This works great, but VS complains that the file is unsafe, and I know to fix that we have to mark is safe in the registry. We wanted to create a .reg file to import this setting and make it easier for everyone. Can we use that environment variable in the path? I have tried the snippet below, but that doesn't seem to work. Is the syntax for an environment variable different?</p>
<pre><code>[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\9.0\MSBuild\SafeImports]
"StyleCop.4.3"="%StyleCopLocation%\\Microsoft.StyleCop.Targets"
</code></pre>
http://stackoverflow.com/questions/1842155/adding-allowpartiallytrustedcallers-with-msbuild0Adding AllowPartiallyTrustedCallers with MSBuildBen Rice2009-12-03T19:03:36Z2009-12-03T19:03:36Z
<p>I am using CC.Net with MSBuild tasks to build an application that is composed of a number of solutions and projects. We are using the AssemblyInfo MSBuild Community task to update version info in AssemblyInfo.cs. Unfortunately the AllowPartiallyTrustedCallers attribute doesn't get in and the AssemblyInfo task tells me that the AllowPartiallyTrustedCallers attribute is not supported by the task. Is there any way to add that attribute through MSBuild without having to resort to a custom task that just tacks the line at the end of the file after-the-fact?</p>
http://stackoverflow.com/questions/1825941/determine-if-solution-compiles-using-msbuild-and-psake1Determine If Solution Compiles using MSBuild and PSakeMagicAndi2009-12-01T12:36:29Z2009-12-03T14:00:25Z
<p>Hi,</p>
<p>I have put together a PSake (v2.0) build script, and the script is setting the <code>$psake.build_success</code> property as <code>true</code> even thought the call to MSBuild fails. Can anyone advise me on how to alter the script so that the <code>$psake.build_success</code> property will correctly return <code>false</code> when the MSBuild call fails?</p>
<p>My PSake build script is as follows:</p>
<pre><code>properties {
$solutionFile = 'SOLUTION_FILE'
$buildSuccessfulMessage = 'Solution Successfully Built!'
$buildFailureMessage = 'Solution Failed to Build!'
$cleanMessage = 'Executed Clean!'
}
task default -depends BuildSolution
task BuildSolution
{
msbuild $solutionFile /t:Clean,Build
if ($psake.build_success)
{
$buildSuccessfulMessage
}
else
{
$buildFailureMessage
}
}
</code></pre>
http://stackoverflow.com/questions/925672/what-are-the-cool-and-interesting-things-that-you-do-during-build-automation18What are the cool and interesting things that you do during build-automation?Mehmet Aras2009-05-29T12:04:34Z2009-12-03T12:40:45Z
<p>I am just curious to see what others are doing during build-automation other than usual compile, build, run-tests, etc tasks that might be helpful and inspirational for others to consider and look into such as:</p>
<ul>
<li>Generating code documentation</li>
<li>Using code-metrics to measure build quality and fail the build if established metrics are violated.</li>
</ul>
http://stackoverflow.com/questions/1838976/need-help-in-msbuild-script-for-build-pass-fail0need help in msbuild script for build pass\failshanthi2009-12-03T10:16:43Z2009-12-03T10:42:48Z
<p>I have a question related to MSBuild script. my scenario is, if build fails build output should be copied into local system. if build passes, build output goes into server destination folder.</p>
<p>can anybody help me out. i am trying this with MSBuild not with Teambuilds.</p>
<p>Thanks
Shanthi</p>
http://stackoverflow.com/questions/1838270/can-i-build-a-delphi-multi-language-project-from-the-command-line0Can I build a Delphi multi language project from the command line?mjustin2009-12-03T07:32:55Z2009-12-03T10:28:14Z
<p>Using Delphi 2009 (or higher) and the ITE (Internal Translation Manager), how can I build the language projects from the command line? The projects are for example</p>
<ul>
<li>Project\Languages\DEU\Project_DEU.bdsproj</li>
<li>Project\Languages\ENG\Project_ENG.bdsproj</li>
</ul>
<p>Theses bdsproj files are not MSBuild projects, so do I have to call DCC32 and pass all search paths and compiler parameters using a script file, or is there a way to use MSBuild for this task, if I specifiy a special build target?</p>
http://stackoverflow.com/questions/1839019/building-a-wpf-application-with-xaml-through-msbuild0Building a WPF Application with XAML through msbuildJEN2009-12-03T10:24:21Z2009-12-03T10:24:21Z
<p>I am attempting to build a simple WPF Application using msbuild via a custom script (below). The project builds and executes fine through Visual Studio, however if I use the msbuild script it builds successfully, and generates the executable, but crashes immediately on startup (with a "WPFApplication has stopped working" error message).</p>
<p>Has anyone experienced this before, or have any suggestions for things to try?</p>
<p>Thanks!</p>
<p>Build Script
</p>
<pre><code> <PropertyGroup>
<AssemblyName>WPFApplication</AssemblyName>
<OutputType>winexe</OutputType>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="WpfBuild\WpfBuild\App.xaml" />
<Compile Include="WpfBuild\WpfBuild\App.xaml.cs" />
<Page Include="WpfBuild\WpfBuild\Window1.xaml" />
<Compile Include="WpfBuild\WpfBuild\Window1.xaml.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildBinPath)\Microsoft.WinFX.targets" />
</Project>
</code></pre>
http://stackoverflow.com/questions/350377/deploy-an-app-config-based-on-build-configuration4Deploy an app.config based on build configurationajmastrean2008-12-08T18:22:37Z2009-12-03T09:25:51Z
<p>I have three custom build configurations { Dev, Qs, Prd }. So, I have three app configs { Dev.config, Qs.config, Prd.config }. I know how to edit the .csproj file to output the correct one based on the current build configuration.</p>
<pre><code><Target Name="AfterBuild">
<Delete Files="$(TargetDir)$(TargetFileName).config" />
<Copy SourceFiles="$(ProjectDir)$(Configuration).config" DestinationFiles="$(TargetDir)$(TargetFileName).config" />
</Target>
</code></pre>
<p>My problem is, I need to have <strong>six</strong> build configurations { Dev, Qs, Prd } x { Debug, Release }. I need to support the debug and release settings (optimizations, pdb, etc) for each environment. However, the app config values don't change between debug/release.</p>
<p>How do I keep the build script as generic as possible and use only the three app configs? I don't want to hard code too many conditional strings.</p>
http://stackoverflow.com/questions/1834548/help-in-building-nhibernate-from-source0Help in building nhibernate from sourcemrblah2009-12-02T17:34:36Z2009-12-02T23:27:36Z
<p>I downloaded nant 0.86 beta which seems to be the latest release.</p>
<p>Now running:</p>
<p>nant default.build I get this error:</p>
<p>detected nant 0.86 beta 1, consider upgrading to a newer version when building for .net 3.5</p>
<p>default.build does not exist in this project</p>
<p>What am I doing wrong here?</p>
<p><b>Update</b>
downloaded the nighly build, now running:</p>
<p>nant default.build</p>
<p>I get this error:</p>
<p>[script] scanning assembly "_bzhbyr9" for extensions</p>
<p>build failed</p>
<p>target 'default.build' does not exist in this project</p>
http://stackoverflow.com/questions/857379/build-with-msbuild-and-dynamically-set-project-references1Build with msbuild and dynamically set project referencesDarren Gosbell2009-05-13T11:16:49Z2009-12-02T22:46:46Z
<p>I have a couple of projects which reference SQL Server assemblies. With SQL Server 2005 and SQL Server 2008 I am currently maintaining 2 project files which point to the same source files and the only difference is the references to the SQL Server assemblies. </p>
<p>Is there some way that I can only maintain one project and dynamically specify the references in my build script?</p>
http://stackoverflow.com/questions/1710309/how-long-does-my-visual-studio-c-compile-take0How long does my Visual Studio C# compile take?Kevin Driedger2009-11-10T18:53:55Z2009-12-02T21:56:45Z
<p>It seems like it should be possible to configure Visual Studio to print out how long the compile takes. </p>
<p>Perhaps somewhere in the .sln file. If the sln is compiled from the command line using msbuild, it prints the time.</p>
http://stackoverflow.com/questions/1832744/how-to-use-aspnetcompiler0How to use aspnet_compiler.ETFairfax2009-12-02T12:58:52Z2009-12-02T21:15:17Z
<p>Hi,</p>
<p>Afterlooking at this [post][1], I thought that I would give it a go.</p>
<p>So, in my Post Build Event, I've put...</p>
<p>C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_compiler -v / -p "$(ProjectDir)\"</p>
<p>...then clicked Build Solution.</p>
<p>Unfortunately, I got the following error: "Could not load type 'MyWebProject.UI.Global'. C:\global.asax 1 MyWebProject.UI" </p>
<p>Any ideas why? To my knowledge, I don't even have a C:\global.asax file.</p>
<p>Ultimately, I want to be able to check my ASPX pages for errors. At the moment, the only way in which I can do this is by navigating to the page.</p>
<p>Any other suggestions/approaches welcome!</p>
<p>Thanks,</p>
<p>ETFairfax</p>
http://stackoverflow.com/questions/1790159/can-you-use-multiple-working-folders-with-tfs1Can you use multiple working folders with TFS?Shire2009-11-24T13:43:19Z2009-12-02T13:59:20Z
<p>In projects in which the workspace has only one working folder, my build scripts work great. Now that I am working with a new project that required 2 working folders, all of the checkout and checkin commands of my previous script fail, with no files found.</p>
<p>Obviously, I'm not understanding a critical part of the implementation of the workspace here... I have a project which is dependant on other projects, the second working folder is basically a 3rd party folder with references to the various published DLL's and headers files needed to compile my project. There are 2 active folders and the local folders are:</p>
<pre>
$(SourceDir)\TEAM-MAIN\Address Finalizer
$(SourceDir)\TEAM-MAIN\HH-CAHPS Project\MAINLINE\3rd Party
</pre>
<p>The built code works fine, but the custom AfterGet fails on the following entry:</p>
<pre><code><!-- Check out all of the assemblyInfo files -->
<Exec Command="$(TfCommand) checkout AssemblyInfo.cs /recursive"
WorkingDirectory="$(MSBuildProjectDirectory)\..\sources"
ContinueOnError="false"/>
</code></pre>
<p>The project will of course work if I have a single working folder and move the source to a high enough point to get all the needed files, but I don't want to troll through 43 other projects todo what I want, let along mucking with their assembly files...</p>
<p>I have also tried :</p>
<pre><code><!-- Check out all of the assemblyInfo files -->
<Exec Command="$(TfCommand) checkout AssemblyInfo.cs /recursive"
WorkingDirectory="$(SolutionRoot)"
ContinueOnError="false"/>
</code></pre>
<p>Same problem, unable to find any assembly files... I have checked build log and I definately see assembly files check out during the build phase...</p>
<pre>
Task "Get"
Get TeamFoundationServerUrl="http://pgpd-team01:8080/" BuildUri="vstfs:///Build/Build/1430" Force=True Overwrite=False PopulateOutput=False Preview=False Recursive=True Version="C7564" Workspace="SBN01P-TFS03_61"
<snip>
Getting C:\Users\tfsservice\AppData\Local\Temp\InfoTurn\Address Finalizer\Sources\Address Finalizer\Address Finalizer\Properties\AssemblyInfo.cs;C7525.
</pre>
<p>If anyone has any ideas or can point me to some article to better explain how mutliple working folders work, I'd appreciate it.</p>
<p>Values for some of the build variables:</p>
<pre>
MSBuildProjectDirectory: C:\Users\tfsservice\AppData\Local\Temp\InfoTurn\Address Finalizer\BuildType
SolutionRoot: C:\Users\tfsservice\AppData\Local\Temp\InfoTurn\Address Finalizer\Sources
</pre>
<p>To provide more information, I added the following command:</p>
<pre>
<!-- Report what our working folders are -->
<Exec
Command='$(TfCommand) workfold'
WorkingDirectory="$(SolutionRoot)\TEAM-MAIN\Address Finalizer"/>
</pre>
<p>The result was:</p>
<pre>
Task "Exec"
Command:
"C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\..\tf.exe" workfold
===============================================================================
Workspace: SBN01P-TFS03_61 (tfsservice)
Server : http://pgpd-team01:8080/
$/InfoTurn/TEAM-MAIN/Address Finalizer: C:\Users\tfsservice\AppData\Local\Temp\InfoTurn\Address Finalizer\Sources\TEAM-MAIN\Address Finalizer
$/InfoTurn/TEAM-MAIN/HH-CAHPS Project/MAINLINE/3rd Party: C:\Users\tfsservice\AppData\Local\Temp\InfoTurn\Address Finalizer\Sources\TEAM-MAIN\HH-CAHPS Project\MAINLINE\3rd Party
</pre>
<p>I have found that the following working directory will work:</p>
<pre>
WorkingDirectory="$(SolutionRoot)\TEAM-MAIN\Address Finalizer"
</pre>
<p>But that the following two do not, note that the 2nd is my 2nd working folder:</p>
<pre>
WorkingDirectory="$(SolutionRoot)"
WorkingDirectory="$(SolutionRoot)\TEAM-MAIN\HH-CAHPS Project\MAINLINE\3rd Party"
</pre>
<p>The error that I get for the label task is the most useful:</p>
<pre>
Using "Label" task from assembly "C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\Microsoft.TeamFoundation.Build.Tasks.VersionControl.dll".
Task "Label"
Label TeamFoundationServerUrl="http://pgpd-team01:8080/" BuildUri="vstfs:///Build/Build/1507" Name="Address Finalizer 2.0.1 Build 039" Recursive=True Comments="Automated build: Address Finalizer 2.0.1 Build 039" Version="W" Child="replace" Files="C:\Users\tfsservice\AppData\Local\Temp\InfoTurn\Address Finalizer\Sources"
C:\Users\tfsservice\AppData\Local\Temp\InfoTurn\Address Finalizer\BuildType\TFSBuild.proj(310,5,310,5): error : Error: Unable to determine the workspace.
</pre>
<p>The actual error from the check out, which is not useful, is:</p>
<pre>
Task "Exec"
Command:
"C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\..\tf.exe" checkout AssemblyInfo.cs /recursive
No matching items found in C:\Users\tfsservice\AppData\Local\Temp\InfoTurn\Address Finalizer\Sources\AssemblyInfo.cs in your workspace.
C:\Users\tfsservice\AppData\Local\Temp\InfoTurn\Address Finalizer\BuildType\TFSBuild.proj(280,5): error MSB3073: The command ""C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\..\tf.exe" checkout AssemblyInfo.cs /recursive" exited with code 1.
</pre>
http://stackoverflow.com/questions/1832774/how-i-start-with-msbuild-nant-for-autobuild0How i start with msbuild & nant for autobuild umeshbuagde2009-12-02T13:04:10Z2009-12-02T13:16:46Z
<p>I m new for msbuild & nant.
How i start this in my envronment : .net3.5</p>
http://stackoverflow.com/questions/1832431/code-coverage-on-tfs-2010-beta-20Code coverage on TFS 2010 Beta 2klausbyskov2009-12-02T11:48:40Z2009-12-02T11:48:40Z
<p>When trying to get TFS 2010 to run tests with codecoverage we get the error in the MSTest.exe output stated below.</p>
<p>When running locally in VS 2010 Beta 2 the code coverage runs just fine.</p>
<p>Have any of you guys experienced this and/or know how to fix it?</p>
<p>Thanks in advance</p>
<p>/Klaus</p>
<p>Partial output from MSTest.exe:</p>
<pre><code>Summary
-------
Test Run Error.
Not Executed 261
-----------------
Total 261
Results file: F:\Builds\3\AdvisDevelopment\AdvisAccessServer\TestResults\kpe_ADVDKAPP01 2009-11-25 15_33_57_Any CPU_Release.trx
Test Settings: BuildServer
Run has the following issue(s):
Value cannot be null.
Parameter name: Waithandle array may not be empty.
</code></pre>
http://stackoverflow.com/questions/1828564/msbuild-afterpublish-target0MSBuild AfterPublish TargetJason M2009-12-01T20:09:34Z2009-12-02T04:30:13Z
<p>I want a particular file copied in with the published output of my web project. I tried changing the <code>Build Action</code> to <code>Content</code> and changing the <code>Copy to Output Directory</code> to <code>Copy always</code>. This works fine except that it buries it down in a sub folder the same way it is in the project.</p>
<p>I do not want it buried down in a sub folder. I want it sitting right next to the rest of of the published output. I thought I might instead handle this problem using the <code>AfterPublish</code> Target.</p>
<p>Can someone show how I might do this? I think I'd need to know the path that the person selected in the Publish dialog somehow.</p>
http://stackoverflow.com/questions/1830143/how-do-you-determine-what-files-are-associated-with-a-label-in-tfs0How do you determine what files are associated with a label in TFS?Shire2009-12-02T01:33:46Z2009-12-02T01:53:38Z
<p>I am unsure if I have a bug or my understanding of labeling in TFS is faulty. I have a situation where I have a file I expect to have a specific label assigned to it. </p>
<p>I have 2 projects, the main project and the 3rd party project. I apply a label to both.</p>
<p>When I do a find for a specific version on one file in 3rd party project using the label search, the label appears. If I use the label, I get an error that it can't find the label.</p>
<p>For the main project using the label always works.</p>
<p>Additionally, I see the label for file in projects I never applied the label too...</p>
<p>So at this point, I am trying to determine exactly what files do have my label and try to figure out why the label is present in search for everything...</p>