c# - Can I use WPF without disabling FIPS compliance? -


i've seen lots of complaints build issues (specifically wpf) error:

this implementation not part of windows platform fips validated cryptographic algorithms.

unfortunately, cannot work-around or disable fips compliance on machine. how can use wpf without disabling fips compliance?

ok figured out. right before </runtime>, add line:

<enforcefipspolicy enabled=“false” /> 

in file c:/program files (x86)/microsoft visual studio/2017/professional/msbuild/15.0/bin/msbuild.exe.config

adding other places not assist, wpf project’s msbuild configurations live. has moved around on each version of microsoft visual studio


Comments