File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 3737 DROP ASSEMBLY [API_Consumer]
3838END
3939
40+ -- =============================================
41+ -- Drop the assembly of Dependency : If you using these in other parts, you can ignore this parts
42+ -- =============================================
43+ IF EXISTS (SELECT * FROM sys .assemblies WHERE name = ' Newtonsoft.Json' )
44+ BEGIN
45+ DROP ASSEMBLY [Newtonsoft.Json]
46+ END
47+ IF EXISTS (SELECT * FROM sys .assemblies WHERE name = ' System.Runtime.Serialization' )
48+ BEGIN
49+ DROP ASSEMBLY [System.Runtime.Serialization]
50+ END
51+ IF EXISTS (SELECT * FROM sys .assemblies WHERE name = ' SMDiagnostics' )
52+ BEGIN
53+ DROP ASSEMBLY [SMDiagnostics]
54+ END
55+
4056-- =============================================
4157-- Create the assembly with the updated DLL
4258-- =============================================
You can’t perform that action at this time.
0 commit comments