0
votes
0answers
10 views

Propagate “Resources” folder between C# projects dependencies

Consider the following 3-project set up: A template project (P1) that has a Resources folder with a bunch of templates that it uses to fill with user data. The Resources folder is copied to build ...
0
votes
0answers
19 views

When I change one project in a solution, several other projects are rebuilt

I have a large Visual Studio 2010 solution with many C# projects in it. When I build the solution, then change one project in it (add a couple of Console.WriteLine statements) and build it again, ...
1
vote
1answer
111 views

Changing Product Name in csproj assembly info in pre-build event of vdproj in same solution

The company that I work for has a product that is used by multiple customers. Unfortunately, one of the customers does not like the name we gave the product and has paid for it to be assigned a ...
0
votes
2answers
70 views

What are square braces surrounding attribute values?

In the TFS DefaultTemplate.11.1.xaml build process template, there are many attributes whose entire values are surrounded by square braces [], so a tag has the form <tagName ...
1
vote
0answers
156 views

How can I make the Microsoft C++ compiler treat unknown flags as errors rather than warnings?

For various reasons, I would like to be able to script the detection of whether the MS C++ compiler honors a particular flag. I'm using the compiler from the Windows 7.1 SDK: C:\> cl /version ...
0
votes
0answers
96 views

Build custom files w/o 'Custom Tool' in MSVS2012

What I like to do is compile a custom file to generate a C# file. I only need it to compile when its been changed but compiling everytime is ok. When I looked around I kept finding reference to ...
1
vote
2answers
458 views

Visual Studio - Before Build - TypeScript Compling

Is there a way to setup a "BeforeBuild" step that compiles each TypeScript to it's own file in a specific directory? For instance, I would like all TypeScript files to compile to a '\tsbuild' ...
1
vote
1answer
161 views

In a Visual Studio pre-build event how do I execute an exe in the context of its own folder instead of the bin folder?

I have a pre-build event defined like this: $(ProjectDir)PreBuild\runthis.exe When the runthis.exe executes, it runs in the context of the bin folder of my project instead of the PreBuild folder ...
1
vote
1answer
138 views

creating a collection variable in MSBuild .targets

Context An annoying Excel add-in compilation bug exists and the only way I am currently able to work around it is by editing the VSTO MSBuild .targets file C:\Program ...
1
vote
1answer
51 views

Is it possible to tell if a .net application was developed with unlicensed Visual Studio?

We contracted a guy to build .net app. His team is in India, and am afraid they may not have licensed softwares their, which may eventually get us in troubles. Is their anyway I can tell if the end ...
4
votes
1answer
1k views

Output content file to specific folder while building project

I have VS 2012 project with structure like this: Project Folder1 file.xml schema.xsd code.cs Folder2 code1.cs code2.cs I set Copy to output directory property of ...
1
vote
1answer
200 views

Visual Studio Build Targets

i have a project in c# containing a graphical user interface. Now we are getting a second hardware backend. What we want is the possibility to decide before compiling the project which library for the ...
0
votes
0answers
149 views

How do I rename an executable in visual studio based on it's version number?

I have a software product which gets wrapped in a custom installer I wrote. I'd like that installer executable to be named based on the assembly it contains. Is there any way to retrieve an ...
4
votes
1answer
632 views

Configure VS to re-run pre-build script when header files change?

I have a perl script in my VS2010 build that autocodes a header file using several header files as input. In other words, script.pl reads a.h, b.h, c.h, and generates z.h How can I set up a ...
3
votes
2answers
268 views

Keeping projects in sync across multiple .NET versions

I need to create some core libraries within my application which will be available in both .NET 3.5 and .NET 4.0. I'm happy creating multiple projects, creating the required defines and using #ifdef ...
-3
votes
3answers
829 views

How to make visual studio display all possible errors/Warnings and not letting it stop the build process

Let's say that I have a set of header files .h , and a set of .cpp files I start the build process What I want is that the VS2008 must show me all the errors/Warnings in all the files It simply ...
0
votes
1answer
102 views

How to make Visual Studio check if file content changed before building?

Visual Studio uses timestamps to determine whether file has changed or not before building it. However, in my case it is not sufficient as timestamps may change, but the content will remain the same. ...
0
votes
1answer
123 views

Building a VS2010 project consumes extra resources

I have many projects I work on normally, but I have one that consumes a max of CPU resources after building, system (windows server 2008) becomes very slow . and this issue has started last week, I ...
1
vote
3answers
163 views

Where can I see the build script used by Visual Studio?

Where can I find the build script -all the list of tools used to build and link the assemlies like al.exe etc.-that BUILDS, REBUILDS the visual-Studio solutions?
1
vote
1answer
352 views

Getting Changesets in build process workflow activity

I have a custom Code Activity that sends out a status email at the end of the build process. So far I have it working except I cant seem to get the Associated Changesets and Work Items. Right now I ...
4
votes
0answers
265 views

Do I need a license to install VS 2010 premium or professional edition on a build server

We've got a few licenses for VS 2010 professional and Premium editions at work. Do we need to buy an extra license to install VS on a build machine ?? Note: this is just to run some codedUI tests ...
2
votes
1answer
318 views

How do I specify a custom build file in Visual Studio

My company uses the MSBuild Community Tasks to provide custom build scripts to our projects. Today, I created a new project and built out a custom build script to run it. I was able to set up builds ...
2
votes
0answers
96 views

Customizing Auto-Build for multiple C++-Projects

Hy guys, for a project at the university we're faced with the following problem: For coverage analysis purposes we should instrument the code of several C++-Projects, which are automatically build ...
0
votes
1answer
78 views

What does Build / rebuild truly builds?

I saw the suggested link : What is the difference between a "build" and a "rebuild" in Visual Studio? in stackOverflow but theres something strange : I have project with many library dlls. ( ...
3
votes
1answer
258 views

how to automatically add files to a visual studio project in a pre-compile step?

I have a perl script to copy some files into my project directory . The pre-compile step of our project will run the script. But the problem is that copied files are not add to the project dependency ...
1
vote
1answer
315 views

Developing front end html/css for asp.net application with prebuilt binaries

Does anyone have any experience with setting up an asp.net web application project such that a non-developer such as a designer could work on this project without any Visual Studio or build tools? ...
4
votes
2answers
2k views

How to disable “Validating Web Site” step when building an ASP.NET Web Site project?

Sometimes, I want to skip validation of the web site to save time when I build an ASP.NET Web Site project. Is there a Visual Studio option or any other means to turn off this behaviour?
1
vote
1answer
329 views

Managing connectionstrings for multiple projects in same solution

Currently I have a larger Solution with different projects (A web application and a windows service,...). Since both applications use the same database, I created a connectionstrings.config file which ...
0
votes
1answer
171 views

TFS daily build - Log and categorize compiler warnings

Is there a possibility to log the compiler warnings of the daily build (TFS) in a file and categorize them? We are using Visual Studio 2008.
0
votes
2answers
230 views

Build output doesn't match the project build order

I am using Visual Studio 2008 in order to build a soultion with 19 projects. If I go to the Project Dependencies window and then to Build Order tab I see that project XXX should be the last project ...
4
votes
2answers
333 views

Can Visual Studio remember a MD5 of my source files in order to avoid rebuilding them when the timestamp changed but not the content?

Most of the time I am doing several distinct developments on the same project and, in order to have some logical separation between them, I use a personal version control system on a project (namely ...
0
votes
1answer
225 views

.NET project build automation

I'm very green when it comes to build automation under windows and capability of that OS. So I'll explain what I would like to achieve bringing up Debian scenario from my previous work. So I had 2 ...
0
votes
1answer
961 views

Visual Studio variable bin directory

I have a few VS 2010 C# projects that are shared between several solutions. I would like these projects to build to the directory of the solutions they are open in. How do I do this? I considered ...
1
vote
6answers
671 views

Visual Studio: Building projects to common directory rather than bin?

Is it possible to build projects to a common directory, instead of the per project bin folder. The purpose would be to make it easier to source control all my binaries. How can I do it and, what are ...
3
votes
3answers
2k views

Xoreax Incredibuild alternatives?

Does anyone knows if there are some alternatives for the Xoreax Incredibuild, this tool is powerful but also too expensive for me. I have project written in c/c++ with about three hundred thousand ...
2
votes
2answers
208 views

VS 2010 build actions without external executables

Is it possible to include tasks in a build, in VS 2010, to e.g. update an assembly version number, without having to run an external application through a build event? That is, I would prefer if I ...
15
votes
6answers
11k views

Building C# solutions from command line with Visual Studio 2010

I want to automate the build process for my C# solutions. How can I build C# solutions from command line so that I don't have to deal with dependencies manually?
1
vote
1answer
2k views

In Team foundation server what is build agent and controller?

I am unable to grasp the concept of build server in Team foundation. Can anybody explain ? Also what is the build agent and controller in the foundation server ?
0
votes
1answer
404 views

Visual studio post build events — doing them in a project instead of the event dialog

So something I've been doing recently is adding an additional project to my code solutions and doing my post build stuff programmatically in it. This project builds last and then launches itself. ...
1
vote
2answers
486 views

Build issues with a C++ - C++/CLI - C# project (Borland and VS-specific components)

Today's issue is a bit odd, but please bear with me. Any advice / suggestions extremely appreciated! I've inherited an old codebase on a project with some components that date back to 2002. There is ...
1
vote
2answers
439 views

Is there a way to get Visual Studio to run “Transform All Templates” upon a successful build?

I have a T4 template that geneates helpert code based on other code that is declared within my project. Because of this, I have to build my project before I run "Transform All Templates". Is it ...
1
vote
2answers
162 views

Programming for a 32-bit environment vs programming for a 64-bit environment / Build configurations

I was looking at some same code (a sample MS Visual Studio C++ project) recently with multiple build configurations (Release/Debug, Win32/x64). My question: What is the difference? I guess I ...
2
votes
4answers
845 views

Visual studio keeps building everything

I have a large sln with many project. I just made a change in project A and it build 9 other projects that project A references, but that had no code change. Anyone know of any tricks to speed this ...
0
votes
1answer
160 views

Error handling in VS/C# build events

I have just written a small utility to be used in a pre-build event. The utilty works fine when run as standalone, but does nothing when used in the build event. Is there a standard way of noticing ...
2
votes
2answers
112 views

Is there a way to have one project build another in Visual Studio?

We are finally getting a source control system in place at work and I've been in charge of setting it up. I've read that it's usually good practice to not include binaries in source control so I ...
2
votes
3answers
1k views

How to restart the IIS Site when re-compiling an asp.net website

What is the best way to add into the build/compile script of an Asp.net project to initiate a IIS to restart the website on DLL rebuild instead of the first request to the site. Current Process ...
18
votes
2answers
466 views

Visual Studio IDE: I want it to make a sound after it compiles so I can get back to work

Would be a nice thing - do I have to write a script or can't I just tweak the build script to do some task?
10
votes
3answers
6k views

Changing Visual Studio's default build output path

Are there any good reasons to modify your projects build output path from its default of "bin\debug"? Is there any benefit to pointing all your projects within a solution to a common build output ...
2
votes
0answers
259 views

Specify path to rule file using environment variable or macro?

In some of my Visual C++ project files I would like to specify the path to a rule file using an environment variable or macro. I have tried editing the ToolFile element with a text editor: ...
1
vote
1answer
466 views

How to incorporate customized wpf screens in Wix Solution

We are developing a customized installer using Wix and Wpf. We have developed some screens using wpf and wish to integrate the same in Wix solution instead of using UI screens provided by Wix. Has ...

1 2 3