Rick Wagner
Rick Wagner's contributions
Using .NET Core in a "Disconnected" Environment
Rick Wagner
For added security, .NET Core applications that require access to external libraries can be run in a disconnected environment (one without internet access). Here's how.
Changing objects in flight, without a Debugger
Rick Wagner
How to change data in-flight, without a Debugger Do you ever wish you could change the behavior of some object in the middle of a bunch of method calls? I sometimes do. Maybe you want to set some properties on an object to replicate a fault. Maybe you’d like to force a specific return value from a method for some reason. These are both very possible, without altering the source code for your application. I like to do this through...
Using .NET Core in a "Disconnected" Environment
Rick Wagner
For added security, .NET Core applications that require access to external libraries can be run in a disconnected environment (one without internet access). Here's how.
Changing objects in flight, without a Debugger
Rick Wagner
How to change data in-flight, without a Debugger Do you ever wish you could change the behavior of some object in the middle of a bunch of method calls? I sometimes do. Maybe you want to set some properties on an object to replicate a fault. Maybe you’d like to force a specific return value from a method for some reason. These are both very possible, without altering the source code for your application. I like to do this through...