diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2024-11-25 00:15:47 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2024-11-25 00:15:47 +0100 |
commit | 7e398c96d059929b4faa139cb1577aca4e843bb2 (patch) | |
tree | c828dbc70dfb70d2ef64b6b87becb40fc3c3acea /src | |
parent | 0c5fcf2286c912e087e6c3c5a25464fcfc107c89 (diff) | |
download | VeraCrypt-7e398c96d059929b4faa139cb1577aca4e843bb2.tar.gz VeraCrypt-7e398c96d059929b4faa139cb1577aca4e843bb2.zip |
Windows: don't test sign driver by default in Release mode.
Diffstat (limited to 'src')
-rw-r--r-- | src/Driver/Driver.vcxproj | 2 | ||||
-rw-r--r-- | src/Driver/Driver.vcxproj.user | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/Driver/Driver.vcxproj b/src/Driver/Driver.vcxproj index 302c50ae..1565229b 100644 --- a/src/Driver/Driver.vcxproj +++ b/src/Driver/Driver.vcxproj @@ -82,8 +82,9 @@ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor> <TargetName>veracrypt</TargetName> <OutDir>$(ProjectDir)$(Platform)\$(ConfigurationName)\</OutDir> + <EnableInf2cat>false</EnableInf2cat> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'"> <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor> <TargetName>veracrypt</TargetName> @@ -92,8 +93,9 @@ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'"> <DebuggerFlavor>DbgengKernelDebugger</DebuggerFlavor> <TargetName>veracrypt</TargetName> <OutDir>$(ProjectDir)$(Platform)\$(ConfigurationName)\</OutDir> + <EnableInf2cat>false</EnableInf2cat> </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <DriverSign> <FileDigestAlgorithm>sha256</FileDigestAlgorithm> diff --git a/src/Driver/Driver.vcxproj.user b/src/Driver/Driver.vcxproj.user index 24891376..9724a753 100644 --- a/src/Driver/Driver.vcxproj.user +++ b/src/Driver/Driver.vcxproj.user @@ -10,6 +10,10 @@ <DbgengKernelMachineName>VM11</DbgengKernelMachineName> <DeployFiles /> <ScriptName>Microsoft.DriverKit.DefaultDriverPackageInstallationClass.PerformDefaultDriverPackageInstallation</ScriptName> <ScriptDeviceQuery /> + <SignMode>Off</SignMode> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'"> + <SignMode>Off</SignMode> </PropertyGroup> </Project>
\ No newline at end of file |