Mauro Servienti
Mauro Servienti
> Notepad2 will try to create a temp file (named like "F9168C5E-CEB2-4FAA-B6BF-329BF39FA1E4") in the target folder. If this is not successful, it will ask for UAC permissions and try again....
> In real Windows OS the ACL policy is usually applied on dictionaries, not on single file, so test the write permission on the dictionary is (in most cases) also...
In essence yes. I'm not sure I'll remove the API projects because it'll require too much effort to explain why handlers can go directly to their own databases. I'll probably...
Does “not enforcing best practices” (https://docs.particular.net/nservicebus/messaging/best-practice-enforcement) enable every class that is serializable to be used as a message, event or command?
so something like: ``` public static void EnablePocoMessages( this EndpointConfiguration config ) { config.DefineMessagesAs(t=>true); config.DefineCommandsAs(t=>true); config.DefineEventsAs(t=>true); } ``` (not sure about the exact syntax) would do the trick. Correct?
the problem with my snippet is that probably transports with native support for pub/sub will get a little crazy in trying to create bindings for things that are not events
@SimonCropp what do you mean by "mesdsage discard"?
Does the word `refactor` in this issue refer to code refactoring only? or should we also include business process refactoring such as: * business process evolution in non-breaking way *...
@ramonsmits we (during a grooming session with @lailabougria) looked at this from the angle of guidance, and we were wondering why would you want to `throw`? Isn't it better to...
I would expect the first to throw and the second to warn, not the other way round.