Tagged Questions
0
votes
0answers
24 views
Dependency manager in .net - problems with nuget
Environment brief
We have a really big IT project (more than 60 solutions). This solutions can be separate in tiers like: contracts, tools, communications tools, UI, etc.
There are a lot of ...
0
votes
2answers
43 views
Missing references that don't exist in MVC3
I separated out my models from my main ASP.net MVC3 app into a class library which is apart of the same solution as my project and is referenced into my project.
How ever the models in this class ...
0
votes
0answers
19 views
Assembly dependencies and versioning numbers
Can somebody confirm that I understood some .NET dependency issues correctly?
I have written a small library L that uses json.net. Library L is referenced (as a dll) in my project P. Since I can't ...
3
votes
2answers
111 views
Is there a convention for project-local NuGet Repositories?
I've nearly finished migrating a large solution to use NuGet for dependencies. Prior to this, the project simply had a Lib directory with all binary dependencies in sub-directories within it. There ...
0
votes
0answers
59 views
How do I cause an attempt to uninstall my Windows service to fail if another service has a dependency on it?
I have a Windows service (written in .NET) for which I built an installer using WiX 3.7. It serves an infrastructure role, and anyone can write another Windows Service that uses it. Since my service ...
5
votes
1answer
166 views
MEF import resolution
Let's say that I have a class with a set of fields marked with [Import] attributes where all these fields prohibit recomposition.
At some moment this class is instantiated using new ...
2
votes
4answers
325 views
Is there a .Net equivalent of Ivy?
We use Ivy for dependency management within our office. It resolves our list of dependencies for any of list of projects and does it very well too, to be fair. It also publishes released dependencies ...
2
votes
1answer
232 views
Transitive Dependency causing Conflicting version of same DLL
What is the best practice in the .NET world to manage transitive dependencies that cause version conflict ?
In details :
Project A Depends on Project B which in turn depends on library C
also
...
2
votes
4answers
489 views
How do I manage dependencies for automated builds on my build server?
I'm trying to implement continuous integration into our day to day workings.
In our team, we're moving from just building our code in Visual Studio on our workstations and deploying, to using ...
1
vote
2answers
194 views
Using a database information for configuring Unity container
Normally, Unity (the DIC) is configured using an standard XML configuration file, such as web.config.
For the purpose of the project, Unity offers great functionality which I would be loving to use. ...
1
vote
1answer
490 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 ...
2
votes
1answer
244 views
What should a dependency management framework do?
I started to write an open-source, free dependency management framework for .NET/C++. Asking the question here I'm trying not to create yet another one no one needs. This desperate evening hobby of ...
3
votes
2answers
1k views
C++ C# Projects dependency management
I'm trying to figure out how to manage our main Visual Studio solution.
In the solution we have to manage C++/CLI projects, C++ native projects, C# projects, external dependencies (compiled C# ...
0
votes
2answers
67 views
Which Externals dll's are required by my application?
Is there any way to know which dlls are required by a net assembly???. The program was built with some external libraries, but idont know what libraries was.
2
votes
2answers
219 views
NuPack Package Management
So when planning new projects is it safe to use NuPack to handle dependencies? When I say safe, will it stick around? Or is it going to just be a hyped project that dies (i.e. Google Wave)? Is ...
2
votes
1answer
374 views
dependency management and release lifecycle in dotnet
Recently my team has hit the wall while trying to manage dependencies semi-automatically.
You know, the trunk/lib folder in svn with a ci-server that commits fresh versions of dlls into that folder. ...
2
votes
3answers
509 views
Graph visualization of existing .NET code
I've seen that VS 2010 Ultimate can generate model graph from existing code. But VS 2010 Ultimate version costs 11K US$, way too much for my budget. Is there any good alternative to do graph ...
6
votes
3answers
925 views
Is there an .NET alternative for Java artifact repositories like Nexus or Artifactory? Where do you store versioned DLL's?
Where to store binaries needed for automatic builds on Team System?
Are you storing them along with the code in the SCM or someplace else? Is having a big amount of binaries in SCM causing any ...
5
votes
4answers
472 views
How do you package external libraries in your .Net projects?
A lot of my projects contain the Castle/NHibernate/Rhino-Tools stack. What's confusing about this is that Castle depends on some NHibernate libraries, NHibernate depends on some Castle libraries, and ...
12
votes
2answers
1k views
What's the best way to manage a dependency tree in .NET?
In my last project we used MSBuild as a scripting language. (yeah, really!) We also wrote hundreds of custom MSBuild tasks, for the parts that made more sense in C#. (I even wrote an MSBuild task to ...