is it possible to mark my CLR function as UNSAFE in code or visual studio anywhere so that wehn vs d

  • Thread starter Thread starter DR
  • Start date Start date
D

DR

is it possible to mark my CLR function as UNSAFE in code or visual studio
anywhere so that wehn vs deploys, it creates unsafe assembly? (instead of me
having to manualy deploy in tsql!)
 
Cor is confused. I think he meant microsoft.public.sqlserver.clr.
This is NOT a C# issue. All of my CLR Executable examples are in VB.NET.

As to the question: When the assembly is created in Visual Studio it's
possible to set the CREATE ASSEMBLY option as needed in the Project
Properties. It's also do write the TSQL yourself and specify the Unsafe
(whatever) in the CREATE.

--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant, Dad, Grandpa
Microsoft MVP
INETA Speaker
www.betav.com
www.betav.com/blog/billva
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________
Visit www.hitchhikerguides.net to get more information on my latest book:
Hitchhiker's Guide to Visual Studio and SQL Server (7th Edition)
and Hitchhiker's Guide to SQL Server 2005 Compact Edition (EBook)
 
Back
Top