Inf2Cat utility for signing drivers considers time in UTC by default and aborts with "date in the future" error when developing in positive-offset timezones. Set "Use Local Time" flag to fix it.
Signed-off-by: Dmitry Kozlyuk <dmitry.kozl...@gmail.com> --- windows/virt2phys/virt2phys.vcxproj | 1 + 1 file changed, 1 insertion(+) diff --git a/windows/virt2phys/virt2phys.vcxproj b/windows/virt2phys/virt2phys.vcxproj index c86cc9b..e5ce5fe 100644 --- a/windows/virt2phys/virt2phys.vcxproj +++ b/windows/virt2phys/virt2phys.vcxproj @@ -133,6 +133,7 @@ </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor> + <Inf2CatUseLocalTime>true</Inf2CatUseLocalTime> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor> -- 2.29.3