Skip to content

Commit

Permalink
Added x64 project.
Browse files Browse the repository at this point in the history
ASIO4ALL Pull mode seems to work only when WOW64 is not being used.
  • Loading branch information
LAGonauta committed Jun 1, 2017
1 parent 55a6a5d commit 6c4777f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ASIORecAndPlay.sln
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,19 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{496F0D9F-591C-4213-B0CC-9489714E2DEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{496F0D9F-591C-4213-B0CC-9489714E2DEB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{496F0D9F-591C-4213-B0CC-9489714E2DEB}.Debug|x64.ActiveCfg = Debug|x64
{496F0D9F-591C-4213-B0CC-9489714E2DEB}.Debug|x64.Build.0 = Debug|x64
{496F0D9F-591C-4213-B0CC-9489714E2DEB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{496F0D9F-591C-4213-B0CC-9489714E2DEB}.Release|Any CPU.Build.0 = Release|Any CPU
{496F0D9F-591C-4213-B0CC-9489714E2DEB}.Release|x64.ActiveCfg = Release|x64
{496F0D9F-591C-4213-B0CC-9489714E2DEB}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
20 changes: 20 additions & 0 deletions ASIORecAndPlay/ASIORecAndPlay.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,26 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\x64\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="NAudio, Version=1.8.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\NAudio.1.8.0\lib\net35\NAudio.dll</HintPath>
Expand Down

0 comments on commit 6c4777f

Please sign in to comment.