From 1960124e629486d8562fcefad607531be092b26b Mon Sep 17 00:00:00 2001 From: Hans Saelens Date: Thu, 19 Nov 2020 15:12:27 +0100 Subject: [PATCH] Quick fix for https://github.com/3F/DllExport/issues/175 --- Wizard/DllExportCfgTask.cs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Wizard/DllExportCfgTask.cs b/Wizard/DllExportCfgTask.cs index d35f0bc..f491429 100644 --- a/Wizard/DllExportCfgTask.cs +++ b/Wizard/DllExportCfgTask.cs @@ -77,8 +77,14 @@ namespace net.r_eg.DllExport.Wizard [Required] public string PkgPath { - get => _pkgPath; - set => _pkgPath = value.DirectoryPathFormat(RootPath); + get + { + return _pkgPath.DirectoryPathFormat(RootPath); + } + set + { + _pkgPath = value; + } } private string _pkgPath; -- 2.28.0.windows.1