我们的系统要求启用FIPS组策略。尝试解决以下错误时:
candle.exe(0,0): error CNDL0308: The Federal Information Processing Standard (FIPS) appears to be enabled on the machine. You must either disable FIPS or use FIPS-compliant security algorithms to generate IDs by passing the -fips command-line switch or by setting true in your .wixproj project.
我应该在哪里使用-fips
参数,或者应该如何在wixproj文件中使用true标签?
答案 0 :(得分:0)
将FipsCompliant
属性作为true
添加到您的.wixproj。例如,
<PropertyGroup>
<FipsCompliant>true</FipsCompliant>
</PropertyGroup>