Using Ranorex 8.0 on a test pc. The test runs start with a bat file, calling the project exe file. But for some time I am getting the mentioned exception.Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'Ranorex.Core.Resolver, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b798506b574ebc9a' or one of its dependencies. The system cannot find the file specified.
at __RxMain.__RxProgram.Main(String[] args)
I checked the cs file __RxPrograms.g. This file had the line "using Ranorex.core.Resolver".
Code: Select all
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using Ranorex;
using Ranorex.Core.Resolver;
namespace __RxMain
{
public class __RxProgram
{
[STAThread]
public static int Main(string[] args)
{
PrerequisiteChecker.WriteErrorToConsoleIfNotAvailable();
AssemblyLoader.Initialize();
RanorexInit();
return MainInvoker.Invoke(Assembly.GetExecutingAssembly(), "", args);
}
[MethodImpl(MethodImplOptions.NoInlining)]
private static void RanorexInit()
{
TestingBootstrapper.SetupCore();
}
}
}
https://www.ranorex.com/forum/problem-w ... 11289.html
https://www.ranorex.com/help/latest/vis ... ntegration