Move AhkKeys / MouseButtons into Helpers

device-handlers
Clive Galway 2 years ago
parent a4b3f4ccf5
commit fcdacb1572

@ -1,7 +1,7 @@
using System.Collections.Generic;
/* Get AHK specific Scancodes for a given key, as reported by AHK's GetKeySC() */
namespace TestApp
namespace TestApp.Helpers
{
public class AhkKey
{

@ -1,10 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections.Generic;
namespace TestApp
namespace TestApp.Helpers
{
static class MouseButtons {
public static List<string> Name { get; } = new List<string>()

@ -1,9 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AutoHotInterception;
using TestApp.Helpers;
namespace TestApp
{

@ -1,9 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AutoHotInterception;
using TestApp.Helpers;
namespace TestApp
{

@ -1,9 +1,6 @@
using AutoHotInterception;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TestApp.Helpers;
namespace TestApp
{

@ -1,9 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AutoHotInterception;
using TestApp.Helpers;
namespace TestApp
{

@ -1,5 +1,6 @@
using AutoHotInterception;
using System;
using TestApp.Helpers;
namespace TestApp
{

@ -42,8 +42,8 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AhkKeys.cs" />
<Compile Include="MouseButtons.cs" />
<Compile Include="Helpers\AhkKeys.cs" />
<Compile Include="Helpers\MouseButtons.cs" />
<Compile Include="MouseButtonTester.cs" />
<Compile Include="TestDevices.cs" />
<Compile Include="KeyboardTester.cs" />
@ -65,6 +65,7 @@
<Name>AutoHotInterception</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>if not exist "$(TargetDir)\x86" mkdir "$(TargetDir)\x86"

Loading…
Cancel
Save