-
Notifications
You must be signed in to change notification settings - Fork 8
/
GlobalSuppressionsGUI.cs
62 lines (60 loc) · 13.6 KB
/
GlobalSuppressionsGUI.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// This file is used by Code Analysis to maintain SuppressMessage
// attributes that are applied to this project.
// Project-level suppressions either have no target or are given
// a specific target and scoped to a namespace, type, member, etc.
using System.Diagnostics.CodeAnalysis;
[assembly: SuppressMessage("Design", "RCS1075:Avoid empty catch clause that catches System.Exception.", Justification = "Silently ignore this exception", Scope = "member", Target = "~M:DB_Schema_Export_Tool.DBSchemaExporterBase.SetLocalError(DB_Schema_Export_Tool.DBSchemaExporterBase.DBSchemaExportErrorCodes,System.String,System.Exception)")]
[assembly: SuppressMessage("Design", "RCS1075:Avoid empty catch clause that catches System.Exception.", Justification = "Silently ignore this exception", Scope = "member", Target = "~M:DB_Schema_Export_Tool.DBSchemaExporterPostgreSQL.ConnectToPgServer(System.String)~System.Boolean")]
[assembly: SuppressMessage("Design", "RCS1075:Avoid empty catch clause that catches System.Exception.", Justification = "Silently ignore this exception", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.GetSelectedListboxItems(System.Windows.Forms.ListBox)~System.Collections.Generic.List{System.String}")]
[assembly: SuppressMessage("Design", "RCS1075:Avoid empty catch clause that catches System.Exception.", Justification = "Silently ignore this exception", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.InitializeControls")]
[assembly: SuppressMessage("Design", "RCS1075:Avoid empty catch clause that catches System.Exception.", Justification = "Silently ignore this exception", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.ScriptDBSchemaObjects")]
[assembly: SuppressMessage("Design", "RCS1075:Avoid empty catch clause that catches System.Exception.", Justification = "Silently ignore this exception", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.SelectAllListboxItems(System.Windows.Forms.ListBox)")]
[assembly: SuppressMessage("Design", "RCS1075:Avoid empty catch clause that catches System.Exception.", Justification = "Silently ignore this exception", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.UpdatePauseUnpauseCaption(DB_Schema_Export_Tool.DBSchemaExporterBase.PauseStatusConstants)")]
[assembly: SuppressMessage("Readability", "RCS1123:Add parentheses when necessary.", Justification = "Keep for readability", Scope = "member", Target = "~M:DB_Schema_Export_Tool.DBSchemaExporterBase.ComputeIncrementalProgress(System.Single,System.Single,System.Single)~System.Single")]
[assembly: SuppressMessage("Readability", "RCS1123:Add parentheses when necessary.", Justification = "Parentheses not needed", Scope = "member", Target = "~M:DB_Schema_Export_Tool.DBSchemaExporterPostgreSQL.StoreCachedLinesForObject(System.Collections.Generic.IDictionary{System.String,System.Collections.Generic.List{System.String}},System.Collections.Generic.List{System.String},System.String,DB_Schema_Export_Tool.DatabaseObjectInfo)")]
[assembly: SuppressMessage("Readability", "RCS1123:Add parentheses when necessary.", Justification = "Parentheses not needed", Scope = "member", Target = "~M:DB_Schema_Export_Tool.DBSchemaExportTool.FilesDiffer(System.IO.FileInfo,System.IO.FileInfo,DB_Schema_Export_Tool.DBSchemaExportTool.DifferenceReasonType@)~System.Boolean")]
[assembly: SuppressMessage("Readability", "RCS1123:Add parentheses when necessary.", Justification = "Parentheses not needed", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.IniFileLoadOptions(System.String,System.Boolean,System.Boolean)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.cboTableNamesToExportSortOrder_SelectedIndexChanged(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.chkPostgreSQL_CheckedChanged(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.chkUseIntegratedAuthentication_CheckedChanged(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.cmdAbort_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.cmdExit_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.cmdGo_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.cmdPauseUnpause_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.cmdRefreshDBList_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.cmdSelectDefaultDMSDBs_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.cmdSelectDefaultMTSDBs_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.cmdUpdateTableNames_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.frmMain_FormClosing(System.Object,System.Windows.Forms.FormClosingEventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.lstDatabasesToProcess_KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.lstDatabasesToProcess_KeyPress(System.Object,System.Windows.Forms.KeyPressEventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.lstObjectTypesToScript_KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.lstObjectTypesToScript_KeyPress(System.Object,System.Windows.Forms.KeyPressEventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.lstTableNamesToExportData_KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.lstTableNamesToExportData_KeyPress(System.Object,System.Windows.Forms.KeyPressEventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mDBSchemaExporter_DBExportStarting(System.String)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mDBSchemaExporter_DebugMessage(System.String)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mDBSchemaExporter_ErrorMessage(System.String,System.Exception)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mDBSchemaExporter_PauseStatusChange")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mDBSchemaExporter_ProgressComplete")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mDBSchemaExporter_ProgressUpdate(System.String,System.Single)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mDBSchemaExporter_StatusMessage(System.String)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mDBSchemaExporter_WarningMessage(System.String)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuEditAutoSelectDefaultTableNames_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuEditIncludeSystemObjects_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuEditIncludeTableRowCounts_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuEditIncludeTimestampInScriptFileHeader_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuEditPauseAfterEachDatabase_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuEditResetOptions_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuEditSaveDataAsInsertIntoStatements_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuEditScriptObjectsThreaded_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuEditStart_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuEditWarnOnHighTableRowCount_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuFileExit_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuFileLoadOptions_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuFileSaveOptions_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuFileSelectOutputDirectory_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "member", Target = "~M:DB_Schema_Export_Tool.frmMain.mnuHelpAbout_Click(System.Object,System.EventArgs)")]
[assembly: SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "The name is acceptable", Scope = "type", Target = "~T:DB_Schema_Export_Tool.frmMain")]
[assembly: SuppressMessage("Simplification", "RCS1179:Unnecessary assignment.", Justification = "Keep for readability", Scope = "member", Target = "~M:DB_Schema_Export_Tool.DBSchemaExporterPostgreSQL.ExportDBTableData(System.String,DB_Schema_Export_Tool.TableDataExportInfo,System.Int64,DB_Schema_Export_Tool.WorkingParams)~System.Boolean")]
[assembly: SuppressMessage("Usage", "RCS1146:Use conditional access.", Justification = "Keep for readability", Scope = "member", Target = "~M:DB_Schema_Export_Tool.DBSchemaExporterSQLServer.ExportDBTableData(System.String,DB_Schema_Export_Tool.TableDataExportInfo,System.Int64,DB_Schema_Export_Tool.WorkingParams)~System.Boolean")]