Tagged Questions

47
votes
11answers
7k views

Best practices for large solutions in Visual Studio (2008)

We have a solution with around 100+ projects, most of them C#. Naturally, it takes a long time to both open and build, so I am looking for best practices for such beasts. Along the lines of questions ...
44
votes
13answers
14k views

What is the best practice for “Copy Local” and with project references?

I have a large c# solution file (~100 projects), and I am trying to improve build times. I think that "Copy Local" is wasteful in many cases for us, but I am wondering about best practices. In our ...
33
votes
8answers
6k views

“Treat all warnings as errors except…” in Visual Studio

In Visual Studio, I can select the "Treat warnings as errors" option to prevent my code from compiling if there are any warnings. Our team uses this option, but there are two warnings we would like to ...
20
votes
4answers
3k views

C# Conditional Compilation and framework targets

There are a few minor places where code for my project may be able to be drastically improved if the target framework were a newer version. I'd like to be able to better leverage conditional ...
17
votes
3answers
4k views

How can I get current directory in msbuild script?

In my msbuild script I need to pass the full directory as a parameter. How can get it? Example: I am running the script from C:\dev, I want a relative path temp, so I am after C:\dev\temp Note: I ...
17
votes
4answers
5k views

Pre-build MSBuild task to update AssemblyInfo not in sync with built exe

I am using a pre-build task in Visual Studio 2008 that invokes msbuild: C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe $(MSBuildProjectDirectory)\version.targets ...
15
votes
2answers
3k views

What does BootstrapperPackage mean inside the *.csproj project

I am upgrading lots of C# projects from vs.net 2008 to vs.net 2010 rc. I notice that the upgrade creates a BootstrapperPackage section inside the *.csproj file (include Microsoft.NET.Framework.3.5 and ...
14
votes
4answers
2k views

MVCBuildViews not working correctly

So I edited my .csproj file on an MVC 3 RTM application to set the following property: <MvcBuildViews>true</MvcBuildViews> This should cause my views to be complied during build and ...
13
votes
2answers
4k views

How to call MSBuild from C#

Is there a better way to call MSBuild from C#/.NET than shelling out to the msbuild.exe? If yes, how?
13
votes
4answers
2k views

Unit test MSBuild Custom Task without “Task attempted to log before it was initialized” error

I have written a few MSBuild custom tasks that work well and are use in our CruiseControl.NET build process. I am modifying one, and wish to unit test it by calling the Task's Execute() method. ...
11
votes
2answers
3k views

Visual Studio Project: How to include a reference for one configuration only?

Env.: VS2008 C# project Hi, I need to build my app for use in 2 different environments. In one of those environments, I need to use a 3rd party DLL assembly. I could isolate the code that uses this ...
10
votes
4answers
4k views

What exactly does System.Diagnostic.Process UseShellExecute do?

I have an MSBuild task that executes (among other things) a call to xcopy. What I have found is that this call to xcopy executes correctly when I run my MSBuild task from a batch file, and fails to ...
10
votes
4answers
2k views

Project Structure for C# Development Effort

What directory/solution/project structure do you find to be the most manageable and convenient for medium to large projects written in C#? By "medium to large" I mean projects which include a diverse ...
10
votes
1answer
3k views

Disable generating PDB files in MsBuild

I'm looking to squeeze some more speed out of my build and was wondering if I could instruct msbuild to not generate PDB files. I'm passing the Configuration=Release and DebugSymbols=false property ...
9
votes
2answers
557 views

Post build event execute powershell

Is it possible to set up a .net project with a post build event to execute a powershell script? I am using this script to generate some files. Also can I pass whether it's a debug or release build to ...
9
votes
3answers
4k views

MSBuild: TlbImp error since upgrading to VS 2010

since upgrading my project to VS2010, including the use of MSBuild v4 instead of 3.5 (and not making any other changes), I get the following build error and have no clue how to fix it (log from ...
9
votes
2answers
3k views

How to reference different version of dll with MSBuild

I have a web application project which utilises a set of 3rd party dll's. The issue is that the dev/staging environment is 32bit, but production is 64bit. As such, we have to re-reference and build ...
9
votes
6answers
932 views

.NET Dependency Management and Tagging/Branching

My company is having trouble figuring out the best way to manage our builds, releases, and branches... Our basic setup is we have 4 applications we maintain 2 WPF applications and 2 ASP.NET ...
8
votes
3answers
147 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 ...
8
votes
2answers
2k views

Can I set LARGEADDRESSAWARE from within Visual Studio?

I have a .net assembly that needs to be 32-Bit and needs to be /LARGEADDRESSAWARE. I know how to do this with EditBin, but I wonder if there is a built-in way in Visual Studio 2010? Or alternatively, ...
7
votes
2answers
459 views

Visual Studio 2008 locks custom MSBuild Task assemblies

I'm developing a custom MSBuild task that builds an ORM layer, and using it in a project. I'm being hampered by Visual Studio's behaviour of holding onto MSBuild task DLLs and not letting go. I'd ...
7
votes
4answers
353 views

I want to create a tool that manipulates C# project files

(Basically we want to import targets files at some places in the *.csproj file and otherwise check that the file follows our standards) What is the best way of doing this? I am planning to use C# and ...
7
votes
8answers
2k views

Is it possible to install c# compiler w/o Visual Studio?

I want to build projects from command line. Is it possible to deploy c# compiler without installing Visual Studio?
7
votes
6answers
1k views

Why would I want to continue to use Nant when MSBuild is available?

I have seen the prior questions and answers. In that one question, the original poster asked a followup question: what are the compelling reasons to use msbuild? are there cons? I didn't see ...
6
votes
3answers
893 views

How does msbuild decide whether it needs to rebuild a C# library or not?

Per subject, how does msbuild decide whether it needs to rebuild a library (ie, invoke csc), or not, when it is run against a C# project file? I imagine (but want to confirm): If there's no output ...
6
votes
5answers
849 views

Ignoring generated files when using “Treat warnings as errors”

We have started a new project but also have this problem for an existing project. The problem is that when we compile with a warning level of 4 we also want to switch on 'Treat all warnings as ...
5
votes
1answer
128 views

The requested operation cannot be performed error when compiling an XNA project

When compiling a project for the second time I get the following error message. I have to close down VS 2010 and it compiles when reloaded. If I make a change then the problem comes back. "Unable ...
5
votes
1answer
137 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 ...
5
votes
2answers
246 views

Copying indirectly referenced assembly to output directory - assembly is missing

I have following situation: there's a project named OLAF.Tools, and that project references Microsoft.Data.SqlXml in C:\Program Files\SQLXML 4.0\bin\Microsoft.Data.SqlXml.dll. Reference Copy Local ...
5
votes
3answers
125 views

How do I compile a project for both .Net 3.5 and 4 at the same time

I need to compile a project for both .Net 3.5 and .Net 4.0. What is the most low-friction way of doing this? If I reference this project from another assembly, how do I determine which runtime is ...
5
votes
4answers
530 views

How do i build a solution programatically in C#?

How do I build a C# solution programatically? I should be able to pass the path of a solution and get the output messages ( or just build the solution ) how do i achieve this in C#?
5
votes
4answers
332 views

Good (CI) Continuous Integration Software for our situation

Currently we are using Hudson (Jenkins) at my company. Which is working for us, and it is completely free. We use it mainly for C# .Net windows applications, however. We love it for the most part, ...
5
votes
2answers
799 views

MsBuild with Solution Files with DefineConstants

Currently, in my automated build, I use the devenv.exe to build my solution files: devenv /build myproject1.sln Now, I want to create two versions of my application, the normal version, and the ...
5
votes
3answers
3k views

MSTest and app.config issue

I am stuck trying to automate unit tests runs with MSTest and deployment of app.config. I read multiple posts and blogs, tried multiple things and yet still app.config doesn't seem to be picked up ...
5
votes
2answers
737 views

MS-Build BeforeBuild not firing

I'm customising a .csproj project to run some custom tasks before the main build. However, I can't get the tasks to execute at all. I uncommented the <Target Name="BeforeBuild" /> element in ...
5
votes
3answers
1k views

C#: VS.NET: Change name of exe depending on conditional compilation symbol

Can you tell Visual Studio to output a different name of an exe file depending on if a specific conditional compilation symbol is set?
5
votes
5answers
2k views

Ways to speed up build time? (C#/Unmanaged C++)

A legacy app I am working on currenty takes ~2hours to build. The project has about 170 projects with 150 or so being unmanaged C++ and the other 30 C#.Net 2.0. What are some suggestions on ways to ...
5
votes
3answers
2k views

Installing a windows service on remote machine using given username

What is the best way to install a windows service written in C# (in the standard way) on a remote machine, where I need to provide the username and password it should run as? I am going to run it ...
5
votes
4answers
2k views

ItemGroup Item scope, alternatively “Why does MSBuild hate me?”

I have a solution I'm trying to get to build on TFS. I want to update the versions of all appropriate files, and I've been stuck trying to get this done. There are plenty of links on how to do it, ...
5
votes
3answers
4k views

Optimizing Visual Studio solution build - where to put DLL files?

I found out that build time of C# solution with many projects gets much faster if you don't have "copy local" enabled everywhere. I did some tests and it seems that (for our solution at least) we ...
4
votes
6answers
131 views

Automated Deployment using CI server

In our project, deployment is always a pain, mostly because of the mistakes done by the release management team. Either they screw up the configuration or get the wrong version installed somehow. We ...
4
votes
1answer
145 views

How do I include DLLs in my .csproj file?

Well, the thing is that I don't have Visual Studio installed and I don't want to install it, so, I made a batch file that compiles my .csproj file and all of my source files too. The problem is that ...
4
votes
1answer
73 views

Is it possible to verify ASHX syntax errors NOT at the run time?

Basically there are simple errors in ASHX file (like missing comma or something like that). Everything is complied OK by Visual Studio, but once the file is accessed (hosted by IIS), an error pops up. ...
4
votes
2answers
327 views

Dependent Assemblies Not Copying To Output Directory Because of Version Number Of Dependent Assembly

On the project I work on we encountered an odd error. This was caused by some funny manipulation of version numbers because of some odd branching we did. We have resolved the issue but I'm curious ...
4
votes
2answers
551 views

c#, MSBuild Bootstrapper with wix, how to download .net framework 3.5 SP1?

I managed to create bootstrapper for my project that includes .net framework 3.5SP1 with this code: <ItemGroup> <BootstrapperFile Include="Microsoft.Net.Framework.3.5.SP1"> ...
4
votes
2answers
170 views

32 and 64 bit ASP.NET deployments

Is the ASP.NET/C# code I develop inherently 32/64 bit agnostic, because it's compiled to some sort of intermediate language? The reason I ask is that I compile my ASP.NET app on an x64 laptop and then ...
4
votes
2answers
261 views

Is there a Visual Studio Build Profiler?

My VS.NET 2008 solution is taking longer and longer to compile (ASP.NET 3.5 + ASP.NET MVC 2 + C#) and I am wondering if there is a way to know what project takes the longer to compile and why? I ...
4
votes
1answer
689 views

Do Web Deployment Projects work with x86 build configuration

I have a need to build a website and several DLLs that it references in an x86 configuration. To date we have been using Web Deployment Projects to create Zip files of the resultant site and all it's ...
4
votes
1answer
246 views

VS 2008 — Using Relative paths in Build Properties

Long story short, I have a test project file (C# project) that contains the NUnit assemblies. When I hit F5, the build properties tell the project to launch NUnit and run the appropriate tests. ...
4
votes
5answers
580 views

Visual Studio 2008: Start custom build target via project/solution context menu - without add-in

I have a custom build target in a visual studio 2008 c# project. Is there a simple way to add a context menu item to the project, so that the custom build target can be executed via the ide? The build ...

1 2 3 4 5 7