Compiling DotNetOpenAuth without checking signed assemblies

If you build a Github source, you get an error when checking signed assemblies.

Is it possible to just change:

SignAssembly = false
DelaySign = false

      

in tools\DotNetOpenAuth.props

?

Just for development / debugging.

+3


source to share


1 answer


Yes, that should be good.



Be careful when making changes and creating a security library. You might think that you are making simple or safe changes, but in reality you are unintentionally undermining security measures and leaving yourself vulnerable.

+2


source







All Articles