Hello
I am using Visual Studio 2017 and have installed Apache Ignite via NuGet.
Also checked the VC++ Redis is installed.
Tried to run this little code
try
{
var ignite = Ignition.Start();
}
catch (Exception e)
{
Console.WriteLine(e);
}
My app terminates with following output
ConsoleApp1.exe' has exited with code 1 (0x1)
It just crashes without any information
My setup
- Windows 10 64 Bit
- Visual Studio 2017
- jdk1.8.0_144
- Ignite 2.2
How can i know whats going on without any information. Any ideas ?
Thx