Skip to content

Commit 168cd9e

Browse files
committed
Fixed discrepancies in projects configuration.
1 parent 1e84bff commit 168cd9e

File tree

8 files changed

+36
-40
lines changed

8 files changed

+36
-40
lines changed

Binaries/XInputDemo.exe

0 Bytes
Binary file not shown.

Binaries/XInputDotNetPure.dll

0 Bytes
Binary file not shown.

Binaries/XInputInterface.dll

0 Bytes
Binary file not shown.

Binaries/XInputReporter.exe

0 Bytes
Binary file not shown.

XInputDemo/XInputDemo.csproj

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,27 @@
1313
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
</PropertyGroup>
16-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
1717
<DebugSymbols>true</DebugSymbols>
18-
<DebugType>full</DebugType>
19-
<Optimize>false</Optimize>
2018
<OutputPath>..\Binaries\</OutputPath>
2119
<DefineConstants>DEBUG;TRACE</DefineConstants>
22-
<ErrorReport>prompt</ErrorReport>
23-
<WarningLevel>4</WarningLevel>
20+
<DebugType>full</DebugType>
2421
<PlatformTarget>x86</PlatformTarget>
2522
<UseVSHostingProcess>false</UseVSHostingProcess>
23+
<ErrorReport>prompt</ErrorReport>
24+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
25+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
2626
</PropertyGroup>
27-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28-
<DebugType>pdbonly</DebugType>
29-
<Optimize>true</Optimize>
27+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
3028
<OutputPath>..\Binaries\</OutputPath>
3129
<DefineConstants>TRACE</DefineConstants>
32-
<ErrorReport>prompt</ErrorReport>
33-
<WarningLevel>4</WarningLevel>
30+
<Optimize>true</Optimize>
31+
<DebugType>pdbonly</DebugType>
3432
<PlatformTarget>x86</PlatformTarget>
3533
<UseVSHostingProcess>false</UseVSHostingProcess>
34+
<ErrorReport>prompt</ErrorReport>
35+
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
36+
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
3637
</PropertyGroup>
3738
<ItemGroup>
3839
<Reference Include="System" />

XInputDotNetPure.sln

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@ Global
1818
Release|Windows = Release|Windows
1919
EndGlobalSection
2020
GlobalSection(ProjectConfigurationPlatforms) = postSolution
21-
{952700CD-A384-43A4-AC4B-52256F83836E}.Debug|Windows.ActiveCfg = Debug|Any CPU
22-
{952700CD-A384-43A4-AC4B-52256F83836E}.Debug|Windows.Build.0 = Debug|Any CPU
23-
{952700CD-A384-43A4-AC4B-52256F83836E}.Release|Windows.ActiveCfg = Release|Any CPU
24-
{952700CD-A384-43A4-AC4B-52256F83836E}.Release|Windows.Build.0 = Release|Any CPU
21+
{952700CD-A384-43A4-AC4B-52256F83836E}.Debug|Windows.ActiveCfg = Debug|x86
22+
{952700CD-A384-43A4-AC4B-52256F83836E}.Debug|Windows.Build.0 = Debug|x86
23+
{952700CD-A384-43A4-AC4B-52256F83836E}.Release|Windows.ActiveCfg = Release|x86
24+
{952700CD-A384-43A4-AC4B-52256F83836E}.Release|Windows.Build.0 = Release|x86
2525
{1967D61A-FB64-463C-BB3C-BB6E90FBC76F}.Debug|Windows.ActiveCfg = Debug|Win32
2626
{1967D61A-FB64-463C-BB3C-BB6E90FBC76F}.Debug|Windows.Build.0 = Debug|Win32
2727
{1967D61A-FB64-463C-BB3C-BB6E90FBC76F}.Release|Windows.ActiveCfg = Release|Win32
2828
{1967D61A-FB64-463C-BB3C-BB6E90FBC76F}.Release|Windows.Build.0 = Release|Win32
29-
{11D9E8F7-228D-4984-9E45-570AD26BE8A9}.Debug|Windows.ActiveCfg = Debug|Any CPU
30-
{11D9E8F7-228D-4984-9E45-570AD26BE8A9}.Debug|Windows.Build.0 = Debug|Any CPU
31-
{11D9E8F7-228D-4984-9E45-570AD26BE8A9}.Release|Windows.ActiveCfg = Release|Any CPU
32-
{11D9E8F7-228D-4984-9E45-570AD26BE8A9}.Release|Windows.Build.0 = Release|Any CPU
33-
{AE527B52-7BE7-4BC2-8228-E475F65461A5}.Debug|Windows.ActiveCfg = Debug|Any CPU
34-
{AE527B52-7BE7-4BC2-8228-E475F65461A5}.Debug|Windows.Build.0 = Debug|Any CPU
35-
{AE527B52-7BE7-4BC2-8228-E475F65461A5}.Release|Windows.ActiveCfg = Release|Any CPU
36-
{AE527B52-7BE7-4BC2-8228-E475F65461A5}.Release|Windows.Build.0 = Release|Any CPU
29+
{11D9E8F7-228D-4984-9E45-570AD26BE8A9}.Debug|Windows.ActiveCfg = Debug|x86
30+
{11D9E8F7-228D-4984-9E45-570AD26BE8A9}.Debug|Windows.Build.0 = Debug|x86
31+
{11D9E8F7-228D-4984-9E45-570AD26BE8A9}.Release|Windows.ActiveCfg = Release|x86
32+
{11D9E8F7-228D-4984-9E45-570AD26BE8A9}.Release|Windows.Build.0 = Release|x86
33+
{AE527B52-7BE7-4BC2-8228-E475F65461A5}.Debug|Windows.ActiveCfg = Debug|x86
34+
{AE527B52-7BE7-4BC2-8228-E475F65461A5}.Debug|Windows.Build.0 = Debug|x86
35+
{AE527B52-7BE7-4BC2-8228-E475F65461A5}.Release|Windows.ActiveCfg = Release|x86
36+
{AE527B52-7BE7-4BC2-8228-E475F65461A5}.Release|Windows.Build.0 = Release|x86
3737
EndGlobalSection
3838
GlobalSection(SolutionProperties) = preSolution
3939
HideSolutionNode = FALSE

XInputDotNetPure/XInputDotNetPure.csproj

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,21 @@
1313
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
</PropertyGroup>
16-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
1717
<DebugSymbols>true</DebugSymbols>
18-
<DebugType>full</DebugType>
19-
<Optimize>false</Optimize>
2018
<OutputPath>..\Binaries\</OutputPath>
2119
<DefineConstants>DEBUG;TRACE</DefineConstants>
22-
<ErrorReport>prompt</ErrorReport>
23-
<WarningLevel>4</WarningLevel>
20+
<DebugType>full</DebugType>
2421
<PlatformTarget>x86</PlatformTarget>
22+
<ErrorReport>prompt</ErrorReport>
2523
</PropertyGroup>
26-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27-
<DebugType>pdbonly</DebugType>
28-
<Optimize>true</Optimize>
24+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
2925
<OutputPath>..\Binaries\</OutputPath>
3026
<DefineConstants>TRACE</DefineConstants>
31-
<ErrorReport>prompt</ErrorReport>
32-
<WarningLevel>4</WarningLevel>
27+
<Optimize>true</Optimize>
28+
<DebugType>pdbonly</DebugType>
3329
<PlatformTarget>x86</PlatformTarget>
30+
<ErrorReport>prompt</ErrorReport>
3431
</PropertyGroup>
3532
<ItemGroup>
3633
<Reference Include="System" />

XInputReporter/XInputReporter.csproj

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,29 +14,27 @@
1414
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
1515
<FileAlignment>512</FileAlignment>
1616
</PropertyGroup>
17-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
17+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
1818
<DebugSymbols>true</DebugSymbols>
19-
<OutputPath>bin\Debug\</OutputPath>
19+
<OutputPath>..\Binaries\</OutputPath>
2020
<DefineConstants>DEBUG;TRACE</DefineConstants>
2121
<DebugType>full</DebugType>
22-
<PlatformTarget>AnyCPU</PlatformTarget>
22+
<PlatformTarget>x86</PlatformTarget>
2323
<UseVSHostingProcess>false</UseVSHostingProcess>
2424
<ErrorReport>prompt</ErrorReport>
2525
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
2626
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
27-
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
2827
</PropertyGroup>
29-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
30-
<OutputPath>bin\Release\</OutputPath>
28+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
29+
<OutputPath>..\Binaries\</OutputPath>
3130
<DefineConstants>TRACE</DefineConstants>
3231
<Optimize>true</Optimize>
3332
<DebugType>pdbonly</DebugType>
34-
<PlatformTarget>AnyCPU</PlatformTarget>
33+
<PlatformTarget>x86</PlatformTarget>
3534
<UseVSHostingProcess>false</UseVSHostingProcess>
3635
<ErrorReport>prompt</ErrorReport>
3736
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
3837
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
39-
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
4038
</PropertyGroup>
4139
<ItemGroup>
4240
<Reference Include="System" />

0 commit comments

Comments
 (0)