Skip to content
This repository was archived by the owner on Nov 12, 2022. It is now read-only.

Commit 13519e1

Browse files
committed
Upgrade to .NET 4.
Because I am moving away from RegisterHotkey function. The reason is that RegisterHotKey only allows one key combination globally. This means that any other app wanting to use a similar hotkey is not allowed to do so. As a result, this is preparation for moving towards WH_KEYBOARD_LL to do the hooking of the keyboard. Since someone already wrote something really good for WH_KEYBOARD_LL hooking, it makes no sense for me to rewrite it. As a result, I am upgrading to .NET 4.0 to be able to utilize their class.
1 parent 0116663 commit 13519e1

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

SuperPutty/SuperPutty.csproj

+14-6
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,20 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>SuperPutty</RootNamespace>
1212
<AssemblyName>SuperPutty</AssemblyName>
13-
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<SourceAnalysisOverrideSettingsFile>C:\Users\Paul Hendryx\AppData\Roaming\ICSharpCode/SharpDevelop3.0\Settings.SourceAnalysis</SourceAnalysisOverrideSettingsFile>
1616
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
1717
<NoStdLib>False</NoStdLib>
1818
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
19-
<ApplicationIcon></ApplicationIcon>
19+
<ApplicationIcon>
20+
</ApplicationIcon>
2021
<FileUpgradeFlags>
2122
</FileUpgradeFlags>
2223
<OldToolsVersion>3.5</OldToolsVersion>
2324
<UpgradeBackupLocation />
25+
<IsWebBootstrapper>false</IsWebBootstrapper>
26+
<TargetFrameworkProfile />
2427
<PublishUrl>publish\</PublishUrl>
2528
<Install>true</Install>
2629
<InstallFrom>Disk</InstallFrom>
@@ -33,7 +36,6 @@
3336
<MapFileExtensions>true</MapFileExtensions>
3437
<ApplicationRevision>0</ApplicationRevision>
3538
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
36-
<IsWebBootstrapper>false</IsWebBootstrapper>
3739
<UseApplicationTrust>false</UseApplicationTrust>
3840
<BootstrapperEnabled>true</BootstrapperEnabled>
3941
</PropertyGroup>
@@ -70,8 +72,9 @@
7072
<HintPath>$(SharpDevelopBinPath)\Tools\NUnit\NUnit.Framework.dll</HintPath>
7173
</Reference>
7274
<Reference Include="System" />
73-
<Reference Include="System.Data.SQLite">
74-
<HintPath>..\bin\System.Data.SQLite.DLL</HintPath>
75+
<Reference Include="System.Data.SQLite, Version=1.0.80.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=AMD64">
76+
<SpecificVersion>False</SpecificVersion>
77+
<HintPath>..\bin\System.Data.SQLite.dll</HintPath>
7578
</Reference>
7679
<Reference Include="System.Web" />
7780
<Reference Include="System.Data" />
@@ -84,6 +87,7 @@
8487
<SpecificVersion>False</SpecificVersion>
8588
<HintPath>..\bin\WeifenLuo.WinFormsUI.Docking.dll</HintPath>
8689
</Reference>
90+
<Reference Include="WindowsBase" />
8791
</ItemGroup>
8892
<ItemGroup>
8993
<Compile Include="AboutBox1.cs">
@@ -95,6 +99,7 @@
9599
<Compile Include="Classes\CLI.cs" />
96100
<Compile Include="Classes\Database.cs" />
97101
<Compile Include="Classes\GlobalHotkeys.cs" />
102+
<Compile Include="Classes\KeyboardListener.cs" />
98103
<Compile Include="ctlApplicationPanel.cs">
99104
<SubType>Component</SubType>
100105
</Compile>
@@ -240,6 +245,9 @@
240245
<Install>true</Install>
241246
</BootstrapperPackage>
242247
</ItemGroup>
248+
<ItemGroup>
249+
<None Include="app.config" />
250+
</ItemGroup>
243251
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
244252
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
245253
Other similar extension points exist, see Microsoft.Common.targets.
@@ -248,4 +256,4 @@
248256
<Target Name="AfterBuild">
249257
</Target>
250258
-->
251-
</Project>
259+
</Project>

bin/System.Data.SQLite.DLL

-52.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)