diff --git a/src/OpenRiaServices.Tools/Framework/CreateOpenRiaClientFilesTask.cs b/src/OpenRiaServices.Tools/Framework/CreateOpenRiaClientFilesTask.cs index 390e167d..cac92d12 100644 --- a/src/OpenRiaServices.Tools/Framework/CreateOpenRiaClientFilesTask.cs +++ b/src/OpenRiaServices.Tools/Framework/CreateOpenRiaClientFilesTask.cs @@ -769,8 +769,8 @@ internal void GenerateClientProxies() private bool GenerateClientProxiesOutOfProcess(string generatedFileName, ClientCodeGenerationOptions options, SharedCodeServiceParameters sharedCodeServiceParameters) { // Call the console app from here if Net 6.0 or greater - string path = Path.Combine(Path.GetDirectoryName(typeof(CreateOpenRiaClientFilesTask).Assembly.Location), - "../net6.0/OpenRiaServices.Tools.CodeGenTask.dll"); + string path = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(typeof(CreateOpenRiaClientFilesTask).Assembly.Location), + "../net6.0/OpenRiaServices.Tools.CodeGenTask.dll")); if (!File.Exists(path)) throw new FileNotFoundException(path);