diff --git a/AboutForm.Designer.cs b/AboutForm.Designer.cs index 6b000fa..7cbe20a 100644 --- a/AboutForm.Designer.cs +++ b/AboutForm.Designer.cs @@ -131,7 +131,7 @@ private void InitializeComponent() this.linkLabel1.Size = new System.Drawing.Size(313, 24); this.linkLabel1.TabIndex = 25; this.linkLabel1.TabStop = true; - this.linkLabel1.Text = "http://sourceforge.net/p/compactview"; + this.linkLabel1.Text = "https://github.com/Rekkonnect/CompactView"; this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); // // panel1 diff --git a/ColorComboBox.cs b/ColorComboBox.cs index 99f0a06..4668bf6 100644 --- a/ColorComboBox.cs +++ b/ColorComboBox.cs @@ -22,6 +22,7 @@ You should have received a copy of the GNU General Public License using System.Collections.Generic; using System.Data; using System.Drawing; +using System.Drawing.Drawing2D; using System.Linq; using System.Windows.Forms; @@ -96,8 +97,8 @@ public static void SetectColor(ComboBox comboBox, Color color) private static void Init() { - grayDotPen.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot; - blackDotPen.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot; + grayDotPen.DashStyle = DashStyle.Dot; + blackDotPen.DashStyle = DashStyle.Dot; var colors = Enum.GetValues(typeof(KnownColor)) .Cast() diff --git a/CompactView.csproj b/CompactView.csproj index ae6d206..adad3de 100644 --- a/CompactView.csproj +++ b/CompactView.csproj @@ -65,6 +65,9 @@ + + packages\Microsoft.SqlServer.Compact.4.0.8876.1\lib\net40\System.Data.SqlServerCe.dll + @@ -112,13 +115,16 @@ OptionsForm.cs + - + + + Form @@ -162,6 +168,7 @@ + SettingsSingleFileGenerator Settings.Designer.cs @@ -273,6 +280,13 @@ + + + if not exist "$(TargetDir)x86" md "$(TargetDir)x86" + xcopy /s /y "$(SolutionDir)packages\Microsoft.SqlServer.Compact.4.0.8876.1\NativeBinaries\x86\*.*" "$(TargetDir)x86" + if not exist "$(TargetDir)amd64" md "$(TargetDir)amd64" + xcopy /s /y "$(SolutionDir)packages\Microsoft.SqlServer.Compact.4.0.8876.1\NativeBinaries\amd64\*.*" "$(TargetDir)amd64" +