Skip to content

Commit 5cfdb39

Browse files
committed
Added x64 build configuration.
1 parent e42d269 commit 5cfdb39

File tree

2 files changed

+32
-8
lines changed

2 files changed

+32
-8
lines changed

Wlx2Explorer.sln

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,26 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Wlx2Explorer", "Wlx2Explore
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|x64 = Debug|x64
1011
Debug|x86 = Debug|x86
12+
Release|x64 = Release|x64
1113
Release|x86 = Release|x86
1214
EndGlobalSection
1315
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{82A3A166-142C-4C62-8D57-6CF8678402AA}.Debug|x86.ActiveCfg = Release|x86
15-
{82A3A166-142C-4C62-8D57-6CF8678402AA}.Debug|x86.Build.0 = Release|x86
16+
{82A3A166-142C-4C62-8D57-6CF8678402AA}.Debug|x64.ActiveCfg = Debug|x64
17+
{82A3A166-142C-4C62-8D57-6CF8678402AA}.Debug|x64.Build.0 = Debug|x64
18+
{82A3A166-142C-4C62-8D57-6CF8678402AA}.Debug|x86.ActiveCfg = Debug|x86
19+
{82A3A166-142C-4C62-8D57-6CF8678402AA}.Debug|x86.Build.0 = Debug|x86
20+
{82A3A166-142C-4C62-8D57-6CF8678402AA}.Release|x64.ActiveCfg = Release|x64
21+
{82A3A166-142C-4C62-8D57-6CF8678402AA}.Release|x64.Build.0 = Release|x64
1622
{82A3A166-142C-4C62-8D57-6CF8678402AA}.Release|x86.ActiveCfg = Release|x86
1723
{82A3A166-142C-4C62-8D57-6CF8678402AA}.Release|x86.Build.0 = Release|x86
1824
EndGlobalSection
1925
GlobalSection(SolutionProperties) = preSolution
2026
HideSolutionNode = FALSE
2127
EndGlobalSection
2228
GlobalSection(ExtensibilityGlobals) = postSolution
23-
VisualSVNWorkingCopyRoot = .
2429
SolutionGuid = {BF0AC8CD-EEA6-4627-9260-407C1EA7A175}
30+
VisualSVNWorkingCopyRoot = .
2531
EndGlobalSection
2632
EndGlobal

Wlx2Explorer/Wlx2Explorer.csproj

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,24 @@
3737
<PropertyGroup>
3838
<ApplicationIcon>Wlx2Explorer.ico</ApplicationIcon>
3939
</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>
4058
<ItemGroup>
4159
<Reference Include="System" />
4260
<Reference Include="System.Core" />
@@ -55,15 +73,15 @@
5573
<Compile Include="Extensions\ProcessExtensions.cs" />
5674
<Compile Include="Utils\WindowUtils.cs" />
5775
<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" />
6078
<Compile Include="Native\NativeConstants.cs" />
6179
<Compile Include="Native\NativeMethods.cs" />
6280
<Compile Include="Native\NativeTypes.cs" />
6381
<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" />
6785
<Compile Include="Extensions\EnumExtensions.cs" />
6886
<Compile Include="Forms\AboutForm.cs">
6987
<SubType>Form</SubType>

0 commit comments

Comments
 (0)