Rafael Lillo
Rafael Lillo
Thank you :), as soon as I will run the test and fixed. And make some example how use,
This code throw null reference, if I comment the `Console.WriteLine("{0}", _depedency.IsEnable);` on `ConfigureHowToFindSaga` works: ```c# public class SampleSaga : Saga, IAmStartedByMessages { private readonly SomeDependency _depedency; public SampleSaga(SomeDependency depedency) {...
@dvdstelt I'm trying to integrate/playing with _Automatonymous_ lib with _NServiceBus_, for that I'm using source code generator to generate the saga, so for _ConfigureHowToFindSaga_ I want to use _NServiceStateMachine_ instance(which...
@mikeminutillo It's already enabled, for some reason it's resolving a queue that not exist/created
@mikeminutillo yes, I've figure out, it's seems to be a queue of other env, I've fixed it by remove the `EnableMessageDrivenPubSubCompatibilityMode` and It's start to work
At home I used Linux Ubuntu 20.04 and I don't have a problem to run FluentMigrator in linux, but to run FluentMigrator I had develop my own tool(where a can...
@jzabroski To run dotnet tool isn't necessary, but to build/run test is necessary install Mono, if we want we could add [Microsoft.NETFramework.ReferenceAssemblies](https://www.nuget.org/packages/Microsoft.NETFramework.ReferenceAssemblies/) to project and that allow us to build...
To allow FM build/test using only .NET Core on Linux is necessary add support/update [Db2 package](https://www.nuget.org/packages/IBM.Data.DB2.Core/) SAP Hana package (https://developers.sap.com/tutorials/hana-clients-dot-net-core.html) also SAP Anywhere doesn't have support for .NET Core
I think it's better we work on this issue on next FM major. Next major where we are going to drop support for JET, SAP Anywhere and SQL CE, right?...
I don't if here is the correct place for my question. What is the naming convention for local function? PascalCase or camelCase The roslyn project I saw camel case, but...