diff --git a/AstroMath.UnitTests/AstroMath.UnitTests.csproj b/AstroMath.UnitTests/AstroMath.UnitTests.csproj
index ecf9b7d..9f778de 100644
--- a/AstroMath.UnitTests/AstroMath.UnitTests.csproj
+++ b/AstroMath.UnitTests/AstroMath.UnitTests.csproj
@@ -56,8 +56,8 @@
..\packages\Castle.Core.4.4.0\lib\net45\Castle.Core.dll
-
- ..\packages\Moq.4.12.0\lib\net45\Moq.dll
+
+ ..\packages\Moq.4.13.0\lib\net45\Moq.dll
..\packages\NUnit.3.12.0\lib\net45\nunit.framework.dll
@@ -65,8 +65,8 @@
-
- ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll
+
+ ..\packages\System.Runtime.CompilerServices.Unsafe.4.6.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll
..\packages\System.Threading.Tasks.Extensions.4.5.3\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll
diff --git a/AstroMath.UnitTests/app.config b/AstroMath.UnitTests/app.config
index 8d5ec5f..319783c 100644
--- a/AstroMath.UnitTests/app.config
+++ b/AstroMath.UnitTests/app.config
@@ -6,6 +6,10 @@
+
+
+
+
\ No newline at end of file
diff --git a/AstroMath.UnitTests/packages.config b/AstroMath.UnitTests/packages.config
index b50b126..2b99214 100644
--- a/AstroMath.UnitTests/packages.config
+++ b/AstroMath.UnitTests/packages.config
@@ -1,8 +1,8 @@

-
+
-
+
\ No newline at end of file
diff --git a/FocuserTestConsole/FocuserTestConsole.csproj b/FocuserTestConsole/FocuserTestConsole.csproj
index 34cf2fd..8818966 100644
--- a/FocuserTestConsole/FocuserTestConsole.csproj
+++ b/FocuserTestConsole/FocuserTestConsole.csproj
@@ -10,7 +10,7 @@
Properties
ASCOM.MeadeGeneric
ASCOM.MeadeGeneric.Test
- v4.0
+ v4.5
512
@@ -54,6 +54,7 @@
AnyCPU
prompt
MinimumRecommendedRules.ruleset
+ false
diff --git a/FocuserTestConsole/Program.cs b/FocuserTestConsole/Program.cs
index d7cfce5..0776b93 100644
--- a/FocuserTestConsole/Program.cs
+++ b/FocuserTestConsole/Program.cs
@@ -14,9 +14,9 @@ using ASCOM.DriverAccess;
namespace ASCOM.MeadeGeneric
{
- class Program
+ public static class Program
{
- static void Main(string[] args)
+ public static void Main()
{
// Uncomment the code that's required
#if UseChooser
diff --git a/FocuserTestConsole/app.config b/FocuserTestConsole/app.config
index e365603..c5e1dae 100644
--- a/FocuserTestConsole/app.config
+++ b/FocuserTestConsole/app.config
@@ -1,3 +1,3 @@
-
+
diff --git a/Meade.net.Focuser.UnitTests/FocuserUnitTests.cs b/Meade.net.Focuser.UnitTests/FocuserUnitTests.cs
index 1c9d18c..4e68ce4 100644
--- a/Meade.net.Focuser.UnitTests/FocuserUnitTests.cs
+++ b/Meade.net.Focuser.UnitTests/FocuserUnitTests.cs
@@ -401,13 +401,13 @@ namespace Meade.net.Focuser.UnitTests
if (position < 0)
{
- _sharedResourcesWrapperMock.Verify( x => x.SendBlind(":F-#"), Times.AtLeastOnce);
- _sharedResourcesWrapperMock.Verify(x => x.SendBlind(":F+#"), Times.Never);
+ _sharedResourcesWrapperMock.Verify( x => x.SendBlind("#:F-#"), Times.AtLeastOnce);
+ _sharedResourcesWrapperMock.Verify(x => x.SendBlind("#:F+#"), Times.Never);
}
else
{
- _sharedResourcesWrapperMock.Verify(x => x.SendBlind(":F-#"), Times.Never);
- _sharedResourcesWrapperMock.Verify(x => x.SendBlind(":F+#"), Times.AtLeastOnce);
+ _sharedResourcesWrapperMock.Verify(x => x.SendBlind("#:F-#"), Times.Never);
+ _sharedResourcesWrapperMock.Verify(x => x.SendBlind("#:F+#"), Times.AtLeastOnce);
}
_sharedResourcesWrapperMock.Verify( x => x.Lock(It.IsAny()), Times.Once);
diff --git a/Meade.net.Focuser.UnitTests/Meade.net.Focuser.UnitTests.csproj b/Meade.net.Focuser.UnitTests/Meade.net.Focuser.UnitTests.csproj
index fb2522e..be4f91f 100644
--- a/Meade.net.Focuser.UnitTests/Meade.net.Focuser.UnitTests.csproj
+++ b/Meade.net.Focuser.UnitTests/Meade.net.Focuser.UnitTests.csproj
@@ -71,8 +71,8 @@
..\packages\Castle.Core.4.4.0\lib\net45\Castle.Core.dll
-
- ..\packages\Moq.4.12.0\lib\net45\Moq.dll
+
+ ..\packages\Moq.4.13.0\lib\net45\Moq.dll
..\packages\NUnit.3.12.0\lib\net45\nunit.framework.dll
@@ -80,8 +80,8 @@
-
- ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll
+
+ ..\packages\System.Runtime.CompilerServices.Unsafe.4.6.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll
..\packages\System.Threading.Tasks.Extensions.4.5.3\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll
diff --git a/Meade.net.Focuser.UnitTests/app.config b/Meade.net.Focuser.UnitTests/app.config
index 8d5ec5f..319783c 100644
--- a/Meade.net.Focuser.UnitTests/app.config
+++ b/Meade.net.Focuser.UnitTests/app.config
@@ -6,6 +6,10 @@
+
+
+
+
\ No newline at end of file
diff --git a/Meade.net.Focuser.UnitTests/packages.config b/Meade.net.Focuser.UnitTests/packages.config
index 1330573..cad1be5 100644
--- a/Meade.net.Focuser.UnitTests/packages.config
+++ b/Meade.net.Focuser.UnitTests/packages.config
@@ -2,8 +2,8 @@
-
+
-
+
\ No newline at end of file
diff --git a/Meade.net.Setup/Product.wxs b/Meade.net.Setup/Product.wxs
index 8cf95a1..e2e47d8 100644
--- a/Meade.net.Setup/Product.wxs
+++ b/Meade.net.Setup/Product.wxs
@@ -25,9 +25,9 @@
= "6.4.1"]]>
-
-
-
+
+
+