The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
2answers
3k views

Recompile C# while running, without AppDomains

Let’s say that I have two C# applications - game.exe (XNA, needs to support Xbox 360) and editor.exe (XNA hosted in WinForms) - they both share an engine.dll assembly that does the vast majority of ...
12
votes
2answers
5k views

How to run NUnit programmatically

I have some assembly that references NUnit and creates a single test class with a single test method. I am able to get the file system path to this assembly (e.g. "C:...\test.dll"). I would like to ...
4
votes
2answers
2k views

Weird behaviour when mixing loading of assemblies using Assembly.LoadFrom and Assembly.Load

Weird behavior when mixing loading of assemblies using Assembly.LoadFrom and Assembly.Load I have encountered a weird behavior when loading assemblies with Assembly.LoadFrom and later on with ...
6
votes
4answers
572 views

How to provide a fallback assembly instead of the one that can't be loaded?

At runtime, if a referenced assembly fails to load with e.g. "Strong name validation failed" (because it's test-signed), is there a way to provide a substitution assembly from another path that is ...