Tagged Questions
The project-reference tag has no wiki summary.
8
votes
3answers
2k views
VS2010: Warning on add project reference to Silverlight project from .NET project
In VS2010, Silverlight 4, .NET 4, I've got a WCF service and a Silverlight app, and Silverlight is accessing the class not with Add Service Reference but by sharing the contract. Naturally, this means ...
7
votes
3answers
1k views
Managing .NET assembly dependencies by dll reference rather than by project reference in VS
We have a .NET project consisting of multiple subprojects (around 20). There are several solutions, each containing only those subprojects which are relevant to the particular solution.
To allow for ...
6
votes
2answers
1k views
TFSBuild/MSBuild and Project Reference vs File Reference
We Have a large VS solution using project references which is build by TFS Build like so:
Solution
- Project 1
- Project 2
- Project ...
- Project N
Because the solution is too large we have ...
5
votes
1answer
677 views
Visual Studio clean solution doesn't delete all dlls / project reference getting moved
I have a VS 2008 C# web app with a bunch of project references to custom dlls. These are all at a relative path from the web project. Recently I've noticed that Clean Solution removes some, but not ...
4
votes
1answer
189 views
How can you include/reference a file in a project without copying it to the project directory?
I am writing an application in Visual Studio 2008.
I have a help file that I want to be included in the output of my project.
I want the most recent version of my help file to stay in a folder that is ...
3
votes
4answers
1k views
Visual Studio 2010 DTE: How to make added DLL reference absolute and not copied
Summary:
We need to duplicate the behaviour of the Add Reference dialog, using DTE, when you add a specific DLL (it adds a Hint path entry to the reference in the CSProj file).
*Note: There is ...
3
votes
2answers
379 views
Difference between project and dll dependencies in .Net in the final compiled assembly
Lets say I have two projects A and B. A depends on B. I can specify this in two ways:
Include A and B in the same solution and specify B as a project dependency for A. This shows up in A's msbuild ...
2
votes
1answer
173 views
Project Build Order in Visual Studio 2010?
We have a Visual Studio 2010 solution that has over 120 projects that reference each other in some way. All inter-project references are project references and not file references which helps Visual ...
2
votes
2answers
119 views
Why is the build failing in Visual Studio because it cannot resolve namespaces from referenced assemblies?
I have 3 class library projects. Lets call them A, B & C. I have added project reference of A & B into the project C.
A & B are building without any error or warning.
Code(Class file) ...
2
votes
1answer
195 views
vs2008 Including Managed C++ class from one dll in another Managed C++ class?
I have a project called ManagedWrapper that is Managed C++ and builds as a DLL.
I have a second project called MyManagedTest that is Managed C++ and builds as a DLL.
When I try to include a header ...
2
votes
4answers
519 views
Do I need to register the COM dll to be able to reference it on the .NET project?
I'm trying to reference a COM dll in visual studio by using the Browse tab and selecting the DLL. I noticed that if the DLL is registered on the system with regsvr32 I can reference it, but if it's ...
1
vote
0answers
42 views
What does Eclipse do with the “Project References” checked projects?
Right click on a project-> properties -> Project References.
A list of the projects in your workspace appears for you to check.
If it only does what I think (force a rebuild when you want to ...
1
vote
1answer
46 views
Primary reference can't be resolved - dlls' that target different versions of .NET
In my solution I have projects A and B. Project A is targeting .NET 4.0. Project B must target .NET 3.5 as it is for Sharepoint 2010.
Project B has a reference to Project A.
When I compile, I get ...
1
vote
2answers
215 views
Visual Studio 2010 Add-in: How to locate project references?
How do you programmatically find & iterate all project & dll references within a Visual Studio 2010 solution?
I can iterate all projects and found the Project.ProjectItems property and ...
1
vote
2answers
2k views
how do I reference a separate project in xcode 4?
How do I reference another project which has code I wish to leverage in XCode 4. In particular I'm trying to make use of the NSDate extensions from here.
Some notes:
I was assuming I should ...
1
vote
1answer
243 views
Unit Tests in VS2008 force rebuild of all dependencies
Why, when I go through my unit tests in VS2008 - either using run or debug - does VS insist on rebuilding all the dependencies of the test project i.e. the projects that I'm testing in the unit tests?
...
1
vote
1answer
66 views
How could an object get a reference to a class that is in a different (and unreferenced) assembly?
I have two projects: A/B. Project A is the project that contains all of the winforms which are bound to objbects in B (logic items)
A has an object of type
A.Form
B has objects of type
B.Serializer
...
1
vote
6answers
1k views
Visual Studio 2005, how to get where project are used in a solution?
I have a solution with other 70 projects into it. My question is : How can I know where the project is used? I do not want to open all those 70 projects to verify the References one by one. How can I ...
0
votes
1answer
63 views
Class library namespace does not exist in WPF app despite project reference
I have a VS2010 solution with a "hello world" WPF Application and a Class Library project. In my class library, I have defined a class in a namespace called ReportImageMerge.Core. I have that project ...
0
votes
1answer
59 views
VS2010 Build of .NET v3.5 projects fail due to a potential .NET v4.0 reference
Attempting to build a Visual Studio 2010 solution with 132 projects which do not use any file references (only project references). When I build the entire solution, I get many build errors like this:
...
0
votes
0answers
87 views
Build both versions of my application at the same time with conditional references
I am developing an application with a miss-match of platforms. My development machine is the 32bit version of Windows 7 and the Staging server is the 64bit version of Windows Server 2008.
I am trying ...
0
votes
0answers
58 views
TFS build 2010 does not build its dependencies for a VC++ project
I set up a VC++ EXE project (e.g. called testApp) which references to two other VC++ projects (e.g. named as dependLib1 and dependLib2). I can select and build successfully the testApp project inside ...
0
votes
1answer
320 views
Visual Studio 2010 Add-in: How to get a reference's Hint Path Property
This question arose from another more complex question, so hopefully if someone can answer this simpler one we can figure out Visual Studio 2010 DTE: How to make added DLL reference absolute and not ...
0
votes
1answer
217 views
Adding WCF proxy class hides Visual Studio project reference
I have a weird visual studio error which is bugging me.
I am using Visual Studio 2010
My solution is small and contains 2 projects:
Project 1 a class library contains the following classes:
...
0
votes
1answer
268 views
How to deploy native images (NGen) using Wix and project references
I'm using Wix/Votive to build an installer for my .NET Solution. I include the binaries from the other projects (EXE and DLLs) using project references (which internally uses heat.exe I think).
What ...
0
votes
4answers
224 views
.net assemblies cross referencing!
i have three projects in my .net solution.
the main project and two class library projects.
i found that i need to cross reference the class library projects.
can i do that, is it safe or there are ...
0
votes
3answers
2k views
Project Reference Problem, Visual Studio 2010
I have a solution that has one class library project, and the others are WPF applications. I have added class library's reference the but, but both of them cannot use its classes.
So, what is the ...
0
votes
1answer
198 views
How to solve this error: Could not find file 'Microsoft.Windows.CommonLanguageRuntime, Version 2.0.50727.0'
This question to which I already found the answer is posted here in case of someone else encounters it. I decided to post the Q&A here so that SO has something about this error, since I don't know ...
0
votes
1answer
327 views
Difficulty with Adding a Reference in Visual Studio (Windows Azure StorageClient)
I've been following alone with this tutorial. Everything is going great, until I get to this part:
Set a reference to the StorageClient
library. You can either add the
sample project to the ...
0
votes
1answer
195 views
Cannot add library in VC++ 2008: My System is Different
Hopefully someone can tell me what's going on here. I'm trying to link to gdiplus.lib and I tried to go to "Properties - Linker - Input - Additional Dependencies" to add the library but I do NOT have ...
0
votes
4answers
70 views
Visual Studio 2008 - Project without DLL
I need to add a reference to a project to do some reflection. But it seems that this project doesn't have a .DLL file (even after building it).
Can this happen?
0
votes
3answers
1k views
Determining outputs of a ProjectReference in MSBuild without triggering redundant rebuilds
As part of a solution containing many projects, I have a project that references (via a <ProjectReference> three other projects in the solution, plus some others). In the AfterBuild, I need to ...
0
votes
1answer
91 views
WinForm application and MS Office references
In our WinForms project, we need to give a facility to import data from Excel sheets.
There are ways to refer MS Office files (here Office 2003) in your project references.
Each time there is ...