SecurityAction.RequestMinimum is obsolete in .Net 4.0

不问归期 提交于 2019-12-03 16:07:12

问题


Recently, our .Net client libaray is upgrading to compile against Net 4.0. After change the target framework to 4.0, the application has some compilation error.

In AssemblyInfo.cs:

[assembly: SecurityPermission(SecurityAction.RequestMinimum, Execution = true)]

Error 7 Warning as Error: 'System.Security.Permissions.SecurityAction.RequestMinimum' is obsolete: '"Assembly level declarative security is obsolete and is no longer enforced by the CLR by default. See http://go.microsoft.com/fwlink/?LinkID=155570 for more information."' `

In .Net 4.0, it shows that: SecurityAction.RequestMinimum as obsolete, and we treat all warning as error.

What I should do with it? - Just remove it(will this has some unexpected impact? for example when the dlls are used in IIS) or change to some other value? I am not familiar with .Net, especially its security mechanism.

Anyone can help on this? Thanks for any advice and comment :)


回答1:


From MSDN:

In the .NET Framework version 4, runtime support has been removed for enforcing the Deny, RequestMinimum, RequestOptional, and RequestRefuse permission requests. These requests should not be used in code that is based on .NET Framework 4 or later.

So, just remove it.




回答2:


Some searching led me here for a similar VB.net rdlc error (so yes, I know the question was tagged C#). I did not utilize the offending code, but I did find that a stray underscore caused this error, for example: in a textbox expression you might accidentally put:

"This is a " & _
"test"

thinking you are in some code behind, but alas this generates this same error as listed above and once removed, the error was gone.



来源:https://stackoverflow.com/questions/11625447/securityaction-requestminimum-is-obsolete-in-net-4-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!