Tagged Questions
2
votes
3answers
328 views
Weird: C# Type or Namespace name could not be found - Builds successfully
I have a weird error showing up in my project when it is open in the VS2012 IDE. Everywhere where I make use of another referenced project it suddenly says "Type or Namespace name could not be found". ...
0
votes
1answer
80 views
Drag and drop project to references folder
(Visual Studio 2012)
Is there any way to create a solution reference by simple dragging the solution item (project) inside the other's project references folder? Like this?
Some kind of plugin or ...
0
votes
0answers
184 views
DLL version number in project reference incorrect after package upgrade using nuget with old version in subfolder
Consider the following scenario
A .NET library project in Visual Studio
A subfolder in that project containing the compiled binaries of
another software product, which my project Process.Start()s at ...
0
votes
1answer
470 views
How can you automatically update a .NET project COM reference?
I have a legacy VB6 COM DLL that's included as a reference in a .NET project. My manual build process looks like this:
Build VB6 DLL
Copy VB6 DLL to reference directory
Register VB6 DLL with ...
1
vote
1answer
72 views
Do all the projects that reference each other need to be in same target framework?
I have a windows-form application which consists of three sub projects.
Project A - Classes
Project B - Classes
Project C – view (win forms)
When I try to add reference to of project B to project C ...
0
votes
2answers
100 views
Reference forwarding in Visual Studio 2010 (from library to executable)
I have a C# library which has System.Data.SQLite as a reference, and an executable (as a 2nd project) which uses the library.
In the library, I have a function which references a class in ...
3
votes
2answers
666 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) ...
1
vote
1answer
574 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 ...
1
vote
4answers
731 views
Cross referencing assemblies
I have three projects in my .net solution.
The main project and two class library projects.
I have found out that I need to cross reference the class library projects.
Can I do that? Is it safe or ...
3
votes
2answers
780 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 ...
8
votes
3answers
2k 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 ...
1
vote
5answers
2k 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 ...
