我们的系统要求启用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标记?
发布于 2019-06-06 06:23:40
将FipsCompliant属性作为true添加到.wixproj中。例如,
<PropertyGroup>
<FipsCompliant>true</FipsCompliant>
</PropertyGroup>https://stackoverflow.com/questions/56467603
复制相似问题