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 37
37
DROP ASSEMBLY [API_Consumer]
38
38
END
39
39
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
+
40
56
-- =============================================
41
57
-- Create the assembly with the updated DLL
42
58
-- =============================================
You can’t perform that action at this time.
0 commit comments