Questions tagged [refix]
7 questions
13
votes
2 answers
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 generate the boilerplate code for an MSBuild task.…

Jay Bazuzi
- 45,157
- 15
- 111
- 168
12
votes
5 answers
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 performance issues with source controol?
There is a need…

Petr Macek
- 1,493
- 1
- 15
- 19
6
votes
4 answers
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 Rhino-Tools depends on both.
I've built all three…

Scott Muc
- 2,873
- 27
- 38
5
votes
3 answers
Checking that all libs and dlls are from the same build?
I am developing a program in VS C++ 2008.
Right now, I have a huge list of dll and lib dependencies and I am adding some more. I worry that when I need to update a dependency by building from source (where I have to manually replace built dlls and…

Karl
- 5,613
- 13
- 73
- 107
2
votes
2 answers
Declarative dependency handling for multi-module source projects in version-control
We have a number of products that consist of a large number of modules, some of which are shared between some of the products. They are spread out over a few version control repositories.
Products are built by master Ant scripts that are responsible…

simon
- 707
- 8
- 22
1
vote
4 answers
.NET Assembly Referencing 101
I have the following class located in Assembly A. The assembly has a reference to StructureMap 2.6.1.
public static class Bootstrapper
{
public static void Bootstrap(string databaseName)
{
…

ActionJackson
- 11
- 2
0
votes
2 answers
Could not load type '' from assembly ''
I decided to modify some code today, and encountered an error that doesn't make any sense to me. I have an interface called IDatabase and a class that inherits from it, called Database. I originally just put IDatabase in the same assembly as…

Dave
- 14,618
- 13
- 91
- 145