0
votes
1answer
28 views

Merging deployment of a mix of project types in .NET

I am using VS 2008 / .NET 3.5 I have the following mix of projects that makes up our product: A number of backend c# class libraries 5 windows services 4 Web application projects I have an ...
0
votes
0answers
34 views

VS2008: Link error while changing default value in import library [closed]

Please take a look at my picture below which shows the error I am getting. I don't know why this error happen. I pointed *.lib files to specific folder for making them easy to manage them between ...
1
vote
1answer
115 views

Override Visual Studio 2008 MSBuild Version

Is it possible to change the msbuild version that is used by Visual Studio 2008 when compiling projects? I would like to set it to use msbuild 4.0. The reason behind this is to be able to import the ...
-2
votes
1answer
65 views

using nant for automated build with VS2008 and .Net 3.5 without msbuild-task

I have tried to use NAnt 0.92 to build VS2008 solution faster. I'm using solution-task but it doesn't work. In the internet say that must use msbuild-task instead of solution-task. But build by ...
0
votes
2answers
301 views

Can't build our solution with MSBUILD, it can't find our .targets files

I've written some windows batch files to call msbuild for all of the VS solutions that our product consists of. They all work except one SLN, in which to CSPROJ files are causing problems. The ...
0
votes
1answer
110 views

msbuild and tfs build and unit testing

So I'm building a very basic solution to practice msbuild. It has a library, website, and test project. I learned that I can create a task to run mstest to run all my tests. But I noticed in tfs ...
0
votes
1answer
123 views

$(MSBuildStartupDirectory) in Visual Studio points to different places on different machines

In a large solution, I'm integrating Gendarme into Visual Studio 2008 compilation process. I am using GendarmeMsBuild task along with a .targets file to add a AfterBuild target to every project in the ...
0
votes
0answers
97 views

Add new Import tag in csproj VS2010 programmatically

I use VS 2010, TFS 2010, I have many C# projects in TFS Server. (few projects too in VS2008) I have an Addin VS 2010 to manage business operations for csproj projects I want modify csproj file in ...
0
votes
1answer
99 views

Get Imports of a Project in Addin VS2008

I need get a list "Imports" of project in Addin VS 2008 - .NET 3.5. In VS2010 - .NET 4.0, I use: EnvDTE.Project project = GetProject(); var project1 = new ...
0
votes
2answers
142 views

Build and Publish (ASP.NET Web Application) using Microsoft.Build.Engine using c#

I want to Build a VS2008 project (ASP.NET Web Application) and then publish using Microsoft.Build.Engine. I have so far successfully managed to BUild the project. But i am unable to Publish it to a ...
0
votes
2answers
73 views

How do I stop Visual Studio from failing to build when projects include common libraries?

I have a visual studio solution whith (roughly speaking) the following layout: Common.dll Proja (project which references Common.dll) Projb (project which references Common.dll) Main (Executable ...
2
votes
1answer
170 views

Advice on next steps with our fledgeling TeamCity / MSBuild setup

we’ve now got a reasonable early days set up with TeamCity (6.5) & MSBuild.. So far only one solution is built this way until we get things working as we want before replicating, so.. Basically: ...
1
vote
1answer
127 views

MSBuild: Merge information from different sources in one task

I want to run the <AL></AL>task of MSBuild to create publisher policies. To this end, in my csproj file, I create a list of config file names: <Target Name="AfterBuild"> ...
2
votes
1answer
47 views

Migration file issue -“Project Not Exists”

I have a Migration File . cd F:\Manoj\Projects\Labtrack\eChecklist_Labinal\EngTrackingMigration C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MSBuild build.proj /t:Migrate I have Updated the my SVN ...
0
votes
0answers
120 views

MS Build error in visual studio: Cannot find resource string

We are upgrade the dotnet application visual studio 2005 to 2008 and using Windows installer xml files (WIX), WIX was also upgraded 2.0 to 3.0 version. In msbuild file the following code getting an ...
0
votes
2answers
285 views

MSBuild - How to copy files that are outside the Project directory

I am new to MSBuild and I am trying to copy a file from one folder on my source control to the project directory. Below is the code: <ItemGroup> <MySourceFiles ...
0
votes
0answers
89 views

MSBuild versus Visual Studio 2008 binaries incompatible?

Our solution includes assemblies that are offered to paying users with source code except for 2 of them which are closed source. This allows users to study and even modify the source of those others. ...
0
votes
1answer
264 views

DirectX SDK include/librarie folders via MSBuild and Visual Studio Express 2008: missing

I've come across a strange thing. Visual Studio 2008 Project: Include/Libraries folder of the DirectX SDK have been added via Tools->Options->Projects and Solutions->VC++ Directories. The required ...
1
vote
1answer
284 views

MSBuild not building with all cores

I have a project configured with Visual Studios 2008. When I open the IDE and hit build, all the cores on my system are used to build the project. However, when I try and build from the command line ...
0
votes
0answers
256 views

Getting a custom build tool to create C# files

I'm trying to get protocol buffers going with that protobuf-csharp-port. I want to have an automatic build by adding the .proto file and using the Custom Tool, and then getting a .cs file. For ...
0
votes
1answer
219 views

Add a custom build target macro directory for multiple solution

I have an existing system with several solutions about 50 or more and all of them have a post build event that seem to paste the target built file in a special directory. Post build event copy ...
2
votes
1answer
212 views

Dll is Published site, but missing in Build

Should be a tiny issue of something overlooked, but I have been stuck on this one since days now and need some pointers here. We are on .NET 3.5, VS2008 and TFS 2010 I have a ASP.NET Web Site ...
0
votes
1answer
229 views

TFS Build Agent Issue?

I have a scenario like that described here. Unfortunately, the solution doesn't work for me. My build project has a folder named bin where all external DLLs are stored and referenced. The problem I'm ...
1
vote
1answer
179 views

MS Build fail CopyLocal True

I have a solution with more than 100 c# projects. We always make CopyLocal option false for all assemblies to avoid some issues. Sometimes some developers chec-in project files with CopyLocal option ...
1
vote
1answer
586 views

How can I configure Visual Studio to automatically clear temporary files after a build?

Where in Visual Studio 2008 can one specify what files should be deleted after a build (for example, .obj and such)? Is there such an option?
0
votes
1answer
229 views

Postbuild Event in .vcxproj

I am trying to make a postbuild event reference to a .props file in a .vcxproj What elements fits between the PostBuildEvent Tag? Although it's not valid i am looking for something like this: ...
3
votes
1answer
215 views

Team City 6.5.5 - MSBuild issue

Trying to configure Visual Studio 2008 project (TFS2010) on TeamCity, created build step with MS build selecting 2.0 as the .NET Framework version - but getting the follwoing error: error MSB5014: ...
5
votes
1answer
500 views

Windows Mobile 6.5 build time (VS2008)

I have a small windows mobile app with roughly 25 forms and maybe 50 classes split into 3 projects. When I'm building the project it takes 25 to 40 minutes for a normal CTRL-SHIFT-B in debug mode. I ...
1
vote
2answers
384 views

Using MSBuild for managing large projects

I have a requirement for compiling large number of projects (some of them having dependency one to other). Of course I can put them under single solution file under Visual Studio and manage the ...
0
votes
1answer
628 views

How do I get the msbuild path from Visual Studio macro?

I am trying to create a context menu item that will run msbuild on certain extensions. I've found the macro that will check for the extension of the currently selected item in the solution explorer. ...
0
votes
1answer
83 views

Delete Key in LookInFolders VS 2008 - 9.0 using MsBuild

I use MsBuild to Registry a VS Addin. I need implement target Uninstall in MSBuild. How can I delete my addin path in SOFTWARE\Microsoft\VisualStudio\9.0\AutomationOptions\LookInFolders registry ...
1
vote
1answer
1k views

Project GUID keeps changing

We have a VS2008 solution and i've noticed something weird happening: some projects refer other projects that are defined in the same solution (added as project references). This was done some time ...
0
votes
0answers
511 views

Get $(SolutionDir) in runtime

I've managed to get the $(SolutionDir) variable in runtime using this task: <Target Name="GenerateCode" Outputs="$(IntermediateOutputPath)ResourcesPath-Constants.cs"> <Exec Command= ...
2
votes
1answer
417 views

Does Visual Studio 2008 support configuration (debug/release build) specific references?

I've got a native C++ project with one C++/CLI file (the only file compiled with /CLI), I'd like to add a reference to a C# DLL. There are separate versions for debug and release however I can only ...
1
vote
1answer
144 views

Msbuild question

I have several long running custom build tasks. It looks Visual Studio, however, runs msbuild tasks on the UI thread, which was causing the IDE to hang. I did a little bit of searching on google, and ...
7
votes
3answers
557 views

Formatting the output of a custom tool so I can double click an error in Visual Studio and the file opens

I've written a command line tool that preprocesses a number of files then compiles them using CodeDom. The tool writes a copyright notice and some progress text to the standard output, then writes any ...
2
votes
2answers
637 views

Differences between MSBUILD vs VS2008 build

I'm trying to set up a continuous integration process, where a server will build a VS2008 .SLN file and do some other actions. When building from Visual Studio, everything works well. However, when ...
1
vote
1answer
113 views

Can you have or mimic within Visual Studio 2008 a Solution Level Pre and Post Build Events?

I would like to know if there is anyway to get the ability to have or at least mimic Pre and Post build events at the Solution level not just at the project level within Visual Studio 2008? Therefor ...
0
votes
1answer
1k views

MSBuild, Extension Pack and TfsVersion

I am trying to implement what I see in this post: TFS and msbuild version number with last changeset. That is, I am trying to get the last Changeset number at build time so I can use it in an ...
0
votes
1answer
56 views

Environment setting in a .net applilcation

I need to know how we can control the environment setting in the application without manually changing the setting in app.config in my .net windows application. In Java I would use a command line ...
0
votes
1answer
80 views

TFS Branch Building Issues

I am currently having a problem with the TFS build system using VS 2008 and TFS Power Tools 2008. My problem is that I have two branches for a solution, which have several projects in each including a ...
0
votes
1answer
394 views

How can I target in a VS2010 C# project an MSBuild assembly from VS2008

I've developed a tool which I use to build other solution files, and if succeeded then runs the output. The tool was initially built with VS2008 and the solution files that must build are also in ...
0
votes
1answer
448 views

Error when building VS2008 solution with TFS2010

I'm getting following error when building my VS2008 Solution with TFS2010. error MSB4019: The imported project "C:\Program Files\MSBuild\Microsoft\AssemblyInfoTask\Microsoft.VersionNumber.Targets" ...
0
votes
1answer
290 views

VS2008 Website project : Unable to get dependencies for project reference

I'm having a few issues building a website project (those without a project file) in VS2008. My website references another project that contains the business logic for the application which itself ...
3
votes
2answers
194 views

Why MSBuild only uses one core while VS.NET uses up all the cores available on the same .sln?

Our solution consists of about 20 .vcproj files. Except for the main program, most of them are independent libraries which only have dependency from their own unit tests. When we build this solution ...
2
votes
2answers
173 views

Any difference in output binaries when using CruiseControl.net in devenv and msbuild

I am using msbuild to build my C# VS solution. I've got an error with a third party control which needs an user interaction for building. I might be able to get it fixed if I changed cruisecontrol ...
3
votes
2answers
5k views

How to use MSBuild with command Prompt?

I have a web site (it's not a web application, it is a website) and I want to Publish it with command prompt. I want to publish it in a same directory (everynight) and (I don't want to use Build ...
0
votes
0answers
454 views

MSBuild verbosity vs. VCBuild verbosity

I'm trying to compile a Visual Studio solution from the command line. One thing I've noticed is that if I leave the /verbosity switch off, or set it to anything less than detailed, I see virtually no ...
1
vote
1answer
1k views

Invalid schema when building with MSBuild

I'm trying to debug a build issue where the solution builds correctly via the Visual Studio 2008 IDE, but when I try building via commandline the built executable doesn't work properly (it builds, but ...
0
votes
2answers
101 views

How to build every project in a solution by using msbuild.exe

Is there a possibility to build every project within a solution by using msbuild in the command line? I'm using Visual Studio 2008

1 2 3 4 5