0
votes
1answer
26 views

Rebuild fails where Clean/Build succeeds in Visual Studio 2010

I've created two projects in a solution, a static library called vm and a console application called vmx. I use the new approach of Framework and References to create the dependency of vm for vmx. I ...
0
votes
0answers
31 views

When adding new project to VS solution it messes up solution dependencies

We have huge project solution with about 20 projects and 6 different build configurations. Each build configuration has own dependencies, when adding new project to the solution, it changes other ...
0
votes
1answer
75 views

Managing dependencies with a simple Façade architecture pattern in VisualStudio 2010

As a learning exercise on software architecture (and also on Visual Studio), I decided to create a set of four minimal WPF/C# applications (solutions) with a single purpose: read some circle ...
1
vote
1answer
55 views

Reference issues in Visual Studio 2010

I have a Visual Studios Solution with two projects, one VB.net the other VC++. The VC++ project is a wrapper around Nvidia's Driver API called Nvapi. It is a nvapi.lib file and the associated header ...
0
votes
0answers
41 views

Why Visual Studio 2010 Wants Link File

I have two libraries, which I will call "Lib1" and "Lib2". Both build in Win32 Debug and Win32 Release modes. Both are built statically (.lib). Lib2 depends on Lib1. For Lib1, I created two ...
0
votes
0answers
154 views

Manifest dependency issue in Visual Studio 2010 (Windows7 64bit)

I have a C++ native DLL project that targets 32bit windows. I also have two machines with seemingly identical setups - both have Windows7 64bit, Studio 2008, Studio 2010 and Studio 2012. All versions ...
1
vote
3answers
576 views

Dll dependencies on a Visual Studio 2010 solution and TFS

How can I make a solution in visual studio so that the .dll dependencies that reside in some other directory totally different from where the solution itself is affected by "get latest". What I've ...
4
votes
2answers
265 views

How can I inherit project dependencies/references from one project to a dependent project in Visual Studio

I have Project 1 with dependencies to Boost and GLM. For Boost and GLM, I've specified the 'Additional Include Directories' to reference the C++ files for each. Project 1 is created as a static ...
2
votes
2answers
206 views

How do I manually edit the manifest of my Visual Studio project to explicitly specify referenced assemblies?

Due to a serious headache with log4net's strong naming and versioning, i.e., the old 1.2.10 name, the new 1.2.11 name, and (heaven help me) the 1.2.10 one SAP made and shoved into the GAC with its own ...
1
vote
3answers
332 views

How to use executables/ DLLs from another folder/location in my Test Project?

I am creating a test project in Visual Studio 2010 for my existing project. I have added reference of one DLL that is being used in the project for which I am creating this test project. Now problem ...
-1
votes
2answers
201 views

Removing dependency from .vcxproj

does anyone know how to remove a dependency of one project on another by editing .vcxproj file? e.g. I have 2 projects A and B in the VS 10 solution. A depends on B hence before compiling A, VS ...
0
votes
0answers
183 views

What is the difference between using #pragma lib and “Additional Dependencies”?

I am using an external library and everything is working as expected when I point the .lib through Properties > Linker > Input > Additional Dependencies. However, if I use #pragma comment(lib, ...
4
votes
1answer
619 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 ...
0
votes
1answer
42 views

VS2010 Reference application that called library

I'm writing an application that references an in house library, and I need to make a method call from the library, back into the application. I cannot "Add A Reference" because this would end in ...
3
votes
1answer
1k views

CMake - dependencies (headers) between apps/libraries in same project

I have the following project structure: CMakeLists.txt lib1/CMakeLists.txt and all cpp and header files of the lib lib2/CMakeLists.txt and all cpp and header files of the lib app/CMakeLists.txt and ...
0
votes
2answers
102 views

I added a project as reference but it still cannot be found

I'm using VS10 and C# and I've encountered a weird problem. I have 2 project A and B, A is a class library, and B is a console project. B depends on A, so I added the project reference of A to B. ...
2
votes
1answer
221 views

Visual Studio 2010 C++ - How to wrap .lib files for reuse

I am using C++ with Visual Studio 2010. I am trying to build a client-server architecture where both client and server rely on the same 'Engine' Following is a diagram which explains this: Where: ...
0
votes
3answers
255 views

setup for an xll on a computer where visual is not installed

I developped an xll with visual studio 2010 and excel 2010. it works fine on excel on the computer where visual is installed. But now, i'm trying to use my xll in a computer where visual is not ...
4
votes
5answers
1k views

Why do I (sometimes) have to reference assemblies referenced by the assembly I reference?

I have an assembly A that defines an interface with some overloads: public interface ITransform { Point InverseTransform(Point point); Rect InverseTransform(Rect value); ...
5
votes
2answers
663 views

How to copy native libraries to the unit test staging directory in Visual Studio 2010

My project has dependencies on some native libraries (DLLs) that I normally copy via the MSBuild targets into the output directory. There is no problem when I run the application, but I am writing ...
0
votes
1answer
678 views

Why cannot symbol be exported from static library?

I'm building OpenCV using Visual Studio 2010. I'm using static CRT linkage (/MTd) and then link opencv.lib to my project. But there is a problem in my project with linking zlib, which is required by ...
2
votes
0answers
298 views

How to configure msbuild/MSVC to deploy dependent files of dependent assemblies

I have a dependency chain that looks like this (simplification for example purposes): application -> foo (contains foo.dll) -> bar (contains bar.dll and bar_data.xml) the dependent files ...
2
votes
1answer
206 views

How linker selects .lib files to inlclude to build?

Some not very meaningful backround: I'm trying to build CGAL using Visual Studio 2010. It is dependent on GMP and MPFR libraries. I'm building my project dependent on CGAL. When building my project, ...
3
votes
2answers
2k views

Visual Studio 2010 MSVCR dependency removal?

I've tried Googleing this but I could not find a solution. I am trying to learn some basic C++. I wrote a simple hello world: #include <stdio.h> int main() { printf("hello, world\n"); ...
3
votes
1answer
938 views

What is a pipeline assembly in XNA 4?

I'm trying to build the demo of TiledLib by Nick Gravelyn. I downloaded the ZIP from BitBucket and opened it in Visual Studio 2010. When I try to build, I get the following error: Essentially, this ...
0
votes
2answers
640 views

How do I find and remove unnecessary dependency in Visual Studio?

I have a problem when I am building in Visual Studio 10. There is a circular dependency towards another project's exe-file (which I found using DebugView) that makes large parts of the solution ...
1
vote
0answers
328 views

Bitcoin-qt 0.5.1 circular dependency

Is there a way to solve this ? Bitcoin-qt 0.5.1 circular dependency while building with visual studio 2010 and nokia qt 4.7.4: 1>------ Build started: Project: Bitcoin, Configuration: Debug Win32 ...
3
votes
1answer
126 views

How can I draw a graph of references between projects?

I want to see in a graphical way the dependencies between my projects in my solution. Is there any Visual Studio internal or external tool that can help me? There is a similar post at How to find all ...
2
votes
1answer
751 views

Projects dependencies between C# and C++ project, build order

If both project Alpha and project Beta are C# projects, we can set that Beta depends on Alpha and this results to following build order: 1) Alpha; 2) Beta If project Alpha is C++ project, we cannot ...
1
vote
1answer
414 views

Is there a tool for Visual studio 2010 solution dependencies?

I need to bundle up all projects in a solution for a code review, and there's a lot more code in the file directory structure than is required for this particular solution. I found this for VS 2008 ...
-1
votes
2answers
974 views

Visual Studio 2010 Additional Dependencies

I'm having more or less this problem, only I accidentally added a .dll file to the additional dependencies field just before the ;%(AdditionalDependencies) and then removed it afterwards. The ...
0
votes
3answers
170 views

How do I include the .NET and Managed DirectX runtime dependencies in my VS 2010 Project?

How do I include the .NET and Managed DirectX runtime dependencies in my VS 2010 Project? I've had some difficulty with the setup project in the past and can't quite figure this one out.
14
votes
3answers
5k views

What does the “Link Library Dependency” linker option actually do in Visual Studio 2010?

Up to VS2008, you set your native C++ project dependencies up in the solution file (Project Dependencies ...) and if (by default) the Linker Option Properties -> Linker -> General : Link ...
0
votes
0answers
41 views

Updating Vs2010 project to fix a broken COM dependency

I have huge solution files with around 70 projects that still use the com component developed with VB6. Each time the compatibility on a COM dll is broken we most manually update all references in ...
1
vote
1answer
351 views

when InstallShield 2011 premier integrated in VS2010 .NET dependencies are not added at build time

I have added an IS2011 project to my existing VS2010 solution. My VS solution contains several projects. I have added the primary output of the main project to IS2011. When the IS2011 project builds ...
3
votes
3answers
216 views

Building two C++ apps that use the same dll in vs 2010

I have apps A and B, both use dll D. A, B and D are C++ projects in vs 2010. A.sln and B.sln are the solution files that build apps A and B. In both A and B there is a reference to the dll D. ...
3
votes
2answers
726 views

Generate Solution with dependencies for building VS 2010 with hundreds of projects

We have a few hundred visual studio project files that I need to assemble into a solution for building. We currently have a custom ruby script, that uses rake, to do this. But is fragile, and only ...
5
votes
3answers
3k views

How do I stop Visual Studio from building dependencies that have not changed?

The title is fairly straightforward. If I hit the build button, it acts like the "Rebuild All" button. If I have two projects, lets call them PARENT and CHILD, and I make a change to Parent and ...
0
votes
1answer
179 views

Is it possible to auto-update the dependecy graph in VS2010 after changed made in the project?

The Dependency Graph is a really great feature included in VS2010. When I create a dependecy graph, is it possible to update it when I change the code in my solution?
4
votes
1answer
4k views

Dependency Walker Error: The Side-by-Side configuration information for “ABC.DLL” contains errors

I am running a program that I built in Visual Studio 2010 which uses a third party DLL "ABC.DLL". I am on Windows 7 64-bits. However, it fails to run due to one DLL. When running Dependency walker on ...
0
votes
1answer
167 views

Does adding a project as a dependency removes the requirement of adding an assembly to the list of references of that project uses?

I am using VS 2010, and it I am using ProjectA's DLL in ProjectB, and add ProjectA as a dependency to ProjectB, would I need to add ProjectA's DLL to ProjectB's references?
2
votes
2answers
993 views

Build order and dependencies not preserved on upgrade from VS 2008 to 2010 with msbuild

I'm in the process of upgrading our VS 2008 solution to run on VS 2010 I managed to successfully build in VS 2010 My next step now is to configure a build machine running TFS 2008 Whenever I start ...
4
votes
1answer
2k views

visual studio project dependency on another project LINKING failure

I have a solution with 2 projects cira_lib and md5_test. One project (cira_lib) is a central library that compiles to a DLL. The other project (md5_test) is an exe with a dependency on cira_lib. ...
2
votes
1answer
547 views

Dependency Matrix for C# code

The dependency matrix of VS 2010 crashes VS 2010 as soon a I try it on my application! Anyone knows a good VS addin with a solid dependency matrix?
0
votes
2answers
2k views

Compiled .dll files requiring msvcr100.dll to load

I have a dll file compiled in MSVC++ 2010. It doesn't require any other extra library, yet only half of its users can load it because some are missing msvcr100.dll. Looking at the dependencies, it is ...
5
votes
2answers
10k views

C++/CLI Missing MSVCR90.DLL

I have a c++/cli dll that I load at runtime and which works great in debug mode. If I try and load the dll in release mode it fails to load stating that one or more dependencies are missing. If I run ...
24
votes
4answers
24k views

MS C++ 2010 and mspdb100.dll

Microsoft's C++ compiler and linker seem to have an odd relationship with mspdb100.dll. When run from the IDE, of course, the compiler and linker work fine. When running either one from the command ...
5
votes
2answers
917 views

How to copy referenced assembly's dependecies to ASP.NET output bin folder?

In Visual Studio 2010, I have project A (asp.net application). Project A references project B (class library). Project B references assembly C (direct reference to a DLL). When building project A, ...
1
vote
3answers
454 views

Visual Studio build and deploy ordering

We have a VS 2010 solution that includes a few class library projects, a SQL Server 2008 database project and a Wix setup project. We are trying to get to a point where the following happens in the ...