1
vote
1answer
56 views

Resolving multiple implementations with property injection of optional dependencies

Today i came across a seemingly strange issue regarding resolving multiple implementations of a type in combination with property injection of a optional dependency, in my case a logger instance. I ...
0
votes
2answers
35 views

Multiple references to the same class library

Let's assume that 2 years ago, I wrote a .NET class library, say mylib.dll, that heavily depends on an external library, say foo.dll, which is open sourced, MIT licensed (that's relevant, read on). A ...
3
votes
1answer
100 views

Which windows services are required to start System.Net.HttpListener on a XP machine?

on some of our customers WinXP SP3 machines, theres a strange behaviour occuring nearly daily. We've installed a windows service thats executing the following code on startup: if( ...
1
vote
1answer
57 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 ...
2
votes
4answers
103 views

How to define properties that are dependent one one another

Lets say I have an class with two properties of type string Prop1 Prop2 And there are the following restrictions Prop1 can not be equal to "Test1" if Prop2 value is "Test2" Prop2 can not be ...
0
votes
0answers
107 views

What is the .NET 4.5 Windows Store App equivalent of FrameworkPropertyMetadataOptions.AffectsRender?

First off, I'm building a windows store application using a Flipview and I've created a custom context indicator similar to the first example you can find on this blog: ...
0
votes
1answer
134 views

Attribute like InheritedExport in Constructor in MEF

I am developing an open ended application and I am new to MEF. I need to hide MEF totally from derived classes. So here is my scenerio. I have a BaseAssembly public class ListContainer { ...
1
vote
1answer
39 views

Importing a class without exporting it

I am using MEF. My application is open ended but I still want to hide it from people who are extending it. e.g. BaseAssembly has public class ListContainer { [ImportMany(typeof(IBase))] ...
0
votes
1answer
40 views

Third party libraries isn't copied to the project output although it is set to Copy Local

I have a dependency problem with Visual Studio 2008 that in a solution there are two projects ProjectA and ProjectB. ProjectA has a reference for ProjectB and ProjectB has a reference for a third ...
1
vote
1answer
37 views

My ASP.NET Website throws an error because a referenced assembly is missing a dependent assembly

My ASP.NET website is throwing an exception on the first request - which is when the app is first starting. So it's saying that some Assembly has a dependency on another assembly (in this case, ...
2
votes
1answer
79 views

App.config file versioned with application?

I have an application that gets compiled into an executable. It relies on an app.config file (which gets turned into a MyApp.exe.config file). I needed to make an update to the application, so made ...
2
votes
5answers
143 views

Method Dependencies - Best Practices?

What is the best way to deal with the properties that a method depends on to execute? Let's say you have a class with 2 properties and a method that does something with those 2 properties. Would it ...
2
votes
2answers
283 views

MEF's ImportMany in the base class imports all exports from all assembles - how to prevent that?

I am using MEF to compose exported types from several assemblies. I'm using a base class, which should ImportMany dependencies, as specified in the derived classes. It looks something like this: Base ...
1
vote
3answers
336 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
vote
1answer
122 views

Nuget/SemVer - How should I increment my version number when adding a new dependency but not changing the public API?

I am versioning a library with SemVer, and distibuting it with NuGet. I am making some bugfixes and performance-related changes that do not modify the public API of the library in any way, but do ...
0
votes
2answers
195 views

WPF cannot find control types defined in other assemblies

I'm building a GUI application framework using WPF in .NET 3.5. My main application has very few dependencies. One of its jobs is to load external assemblies (plugins) and request windows and ...
0
votes
3answers
264 views

c# additional dependencies - opencvsharp

I have build a c# class library "verification.dll" using OpenCVSharp. This references OpenCvSharp.dll in Solutiondir/Dependencies/ and has copylocal = true. The Folder "Dependencies" has 4 files ...
0
votes
1answer
35 views

How to get the list of types in an assembly which has unresolved dependencies?

I want to list down all the types mentioned in a DLL(assembly) which has some dependencies to other DLLs that I don't have access to. Is there a way to dismiss those dependencies and just get the ...
1
vote
1answer
183 views

In Unity, when are dependencies determined through reflection?

Aside from registered dependencies, are dependencies that are determined through reflection, such as injected dependencies, done in regards to the lifetime of the dependency or during the lifetime of ...
6
votes
1answer
5k views

WinSxS fails to load VC++ DLLs

I've got a problem with several VC++ DLLs, which I should include into my .NET/C# project. One VC++ DLL is a C++/CLI DLL, which I use as public interface from my .NET project. The other DLLs are ...
0
votes
1answer
36 views

How to figure out in which projects a certain dll is used

One of our other teams was upgrading a dll to .NET 4.0 which broke a lot of existing projects that where not migrated yet (.NET 3.5). The problem is that we can not figure out where the dependency on ...
0
votes
1answer
182 views

Meeting assembly dependencies in a MEF environment

I have an application in which I am employing MEF to dynamically load extension assemblies. One assembly is a domain layer, the second is a view. The domain assembly load and works as expected. The ...
2
votes
2answers
3k views

.NET DLL references/dependency checking utility

With Visual Studio, I can see the dll references as the attached picture as an example. With this reference information, I can open the (from the example) Composition project to find all the other ...
0
votes
1answer
65 views

An automated way to rid a project of a Contract dependency

I am trying to build a NSpeex solution for Windows Phone application. The problem is that a codeplex NSpeex page provides a Silverlight version of the library, but it throws a run-time exceptions, ...
1
vote
0answers
191 views

Is .NET supposed to implicitly bind a dependency on a certain assembly version to a newer version?

I'm wondering about .NET's defined behaviour as regards the resolution of dependencies on specific versions of assemblies. As an example, I have a dependency on DataAccess.SQLite, which depends on ...
2
votes
1answer
52 views

Exposing types through wrapper assembly

Suppose, I have three assemblies A1, A2, A3. A1 uses A2 and A2 uses A3. My problem is that A2 public function has a parameter which is an enumeration defined in A3, so to make use of A2 in A1 I also ...
3
votes
4answers
90 views

Complex Dependency Code Smell

Suppose you have a .Net solution with a main project that uses various components. Now, two of these components reference a certain common library CommLib. These components may evolve on their own and ...
0
votes
1answer
111 views

Assembly.LoadFrom dependency search order

I want to know in what order and in whcih directories LoadFrom searches for dependencies of loading assembly. I know, that It searches in GAC, program folder and some of other directories but I don't ...
7
votes
1answer
296 views

How to manage version dependencies in a C#/.NET Project?

Suppose you have Project A, and this has various dll dependencies, but the tree looks something like this: Project A => Project B => Project C => Project D => ...
0
votes
1answer
168 views

Castle Windsor 3 Beta 1 - ArrayResolver Dependencies Not Injected

I'm having an issue with Castle Windsor 3 Beta 1. I'm using the ArrayResolver which has been added to the installer like so: objContainer.Kernel.Resolver.AddSubResolver(New ...
2
votes
2answers
308 views

Dependency graph in .NET

In my app I have stuff like tasks, resources and locks. Tasks can depend on resources, other tasks currently running or finished and locks over resources. Tasks can also create resources. Is there ...
6
votes
2answers
138 views

Abstracting the DateTime.Current dependency

Is there a nuget package, or other "standard" that wraps the hard dependency created when your code is coupled to DateTime.Now? I'm seeking guidance on this before writing my own. Albeit that it's ...
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.
0
votes
3answers
38 views

Class C from assembly A1 implements interface from assembly A2. When using C, need to reference both A1 and A2

This is by design, according to the answers in this SO question But I really don't want to reference both assemblies, it feels like I'm breaking encapsulation (the users of A1 shouldn't know that A1 ...
0
votes
2answers
472 views

DllNotFoundException for .dll which is in current folder

I'm getting a System.DllNotFoundException for a .dll which is in the same folder as the executable whenever my application attempts to use a function which exists in the DLL. The weird thing is that ...
4
votes
4answers
1k views

Create nuget package for a solution with multiple projects

We are currently building a solution with several projects. We have something like this: - Common - Logging - Logging.NLog - Threading So Logging.NLog is dependant on Logging, Logging on ...
1
vote
1answer
45 views

How to get a list of types that my class depends on in Ndepend?

Using Ndepend; How can I get a list of all types (types only from the same assembly) that my class is using? If there is any way to do this other than Ndepend, I'm open to suggestions.
0
votes
1answer
96 views

Getting a dependency graph/tree for .Net where the referenced dlls are NOT within the same solution

As the title says, what's the best way of getting a dependency graph/tree for .Net where the refernenced dlls do NOT reside within the same solution? The VS2010 Architecture-> Generate Dependency ...
1
vote
1answer
486 views

Can I specify dependency directories when dynamically loading assemblies?

I'm wondering if a setup like this is possible: c:\eflow\proxy.dll (main DLL loaded by application) c:\eflow\application\dynamic.dll (DLL dynamically loaded by proxy.dll) c:\eflow\dependency.dll ...
1
vote
1answer
352 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 ...
0
votes
1answer
244 views

Dependency differences Spring.net configuration files and assemblies

In many examples of Spring.net are embedded assembly resources files used for the configuration metadata. Every assembly has its own configuration metadata files. These files contains object ...
0
votes
2answers
218 views

Using Code Contracts, why does ccrewrite require access to every runtime dependency?

I'm trying to use Code Contracts and I'm running into a problem that is blocking me. With Contract Reference Assembly set to Build, ccrewrite is erroring while trying to access assemblies that are ...
1
vote
1answer
250 views

Exception from .net windows executable file

I have create .net windows application in vs2010 with entity. I have added mydatabase.mdf file in the application to store data. It is working fine when i executed in visual studio. Now I have created ...
1
vote
1answer
145 views

Lowering Dependancy Version of Compile (VB.NET)

I'm working on a project that is pretty simple, but the most recent version of VB.NET that I have is 4.0. That means, anything I compile, requires that version of the .NET framework. Is there any ...
0
votes
1answer
454 views

Specifying Windows service dependencies in app.config?

I'm creating a Windows service which will depend on the SQL Server service having started up before mine. I know you can add such a dependency from code, the Windows GUI, or the command line via sc, ...
0
votes
3answers
262 views

Determine if executable file has any .net dependencies

I would like to determine whether or not a file has any dependencies to the .net framework. The catch: I want to do this without the use of any third party application. I was hoping there was some ...
-2
votes
2answers
80 views

Checking for class dlls on application launch message

Is there any way to check for your class dll files? Let's say: Example.exe has MC.dll and LOD.dll If I put Example.exe without the dll files on my desktop, it will give you the "Microsoft .NET ...
2
votes
3answers
215 views

Looking for a FOSS tool to display a .NET assemblies link dependencies

Can anyone recommend a tool (ideally FOSS) that can analyse an .NET assembly and list its dependencies? What I am after is a tool that given a .NET exe file can produce a report showing me the .NET ...
0
votes
3answers
86 views

Is it possible to debug a .net project when a separate project in the same solution has errors?

I have a solution with multiple projects from another developer. One of the projects is a test app that has errors because it has hard-coded references to DLL's that developer's hard drive. I don't ...
0
votes
1answer
85 views

Clickonce executable reference problem

I have a .Net 2.0 solution with several projects. The solution contains MainProject which has, as a reference, HelperProject (C# Console Application). MainProject occasionally uses the .exe created ...

1 2 3