|
37 | 37 | <PropertyGroup> |
38 | 38 | <ApplicationIcon>Wlx2Explorer.ico</ApplicationIcon> |
39 | 39 | </PropertyGroup> |
| 40 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> |
| 41 | + <DebugSymbols>true</DebugSymbols> |
| 42 | + <OutputPath>bin\x64\Debug\</OutputPath> |
| 43 | + <DefineConstants>DEBUG;TRACE</DefineConstants> |
| 44 | + <DebugType>full</DebugType> |
| 45 | + <PlatformTarget>x64</PlatformTarget> |
| 46 | + <ErrorReport>prompt</ErrorReport> |
| 47 | + <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
| 48 | + </PropertyGroup> |
| 49 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> |
| 50 | + <OutputPath>bin\x64\Release\</OutputPath> |
| 51 | + <DefineConstants>TRACE</DefineConstants> |
| 52 | + <Optimize>true</Optimize> |
| 53 | + <DebugType>pdbonly</DebugType> |
| 54 | + <PlatformTarget>x64</PlatformTarget> |
| 55 | + <ErrorReport>prompt</ErrorReport> |
| 56 | + <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
| 57 | + </PropertyGroup> |
40 | 58 | <ItemGroup> |
41 | 59 | <Reference Include="System" /> |
42 | 60 | <Reference Include="System.Core" /> |
|
55 | 73 | <Compile Include="Extensions\ProcessExtensions.cs" /> |
56 | 74 | <Compile Include="Utils\WindowUtils.cs" /> |
57 | 75 | <Compile Include="InitializationFile.cs" /> |
58 | | - <Compile Include="KeyboardHook.cs" /> |
59 | | - <Compile Include="VirtualKeyModifier.cs" /> |
| 76 | + <Compile Include="Hooks\KeyboardHook.cs" /> |
| 77 | + <Compile Include="Hooks\VirtualKeyModifier.cs" /> |
60 | 78 | <Compile Include="Native\NativeConstants.cs" /> |
61 | 79 | <Compile Include="Native\NativeMethods.cs" /> |
62 | 80 | <Compile Include="Native\NativeTypes.cs" /> |
63 | 81 | <Compile Include="Plugin.cs" /> |
64 | | - <Compile Include="VirtualKey.cs" /> |
65 | | - <Compile Include="Configuration\PluginInfo.cs" /> |
66 | | - <Compile Include="Configuration\ProgramSettings.cs" /> |
| 82 | + <Compile Include="Hooks\VirtualKey.cs" /> |
| 83 | + <Compile Include="Settings\PluginInfo.cs" /> |
| 84 | + <Compile Include="Settings\ProgramSettings.cs" /> |
67 | 85 | <Compile Include="Extensions\EnumExtensions.cs" /> |
68 | 86 | <Compile Include="Forms\AboutForm.cs"> |
69 | 87 | <SubType>Form</SubType> |
|
0 commit comments