Skip to content
This repository has been archived by the owner on Feb 8, 2021. It is now read-only.

Commit

Permalink
Fixed platform
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Klemm committed Jul 26, 2017
1 parent b599d69 commit 60752eb
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 25 deletions.
26 changes: 11 additions & 15 deletions src/YTMusicDownloader.sln
Original file line number Diff line number Diff line change
Expand Up @@ -89,26 +89,22 @@ Global
{CFDE5EE8-68EF-43CD-A0E9-EE5A399F5E03}.Release|x64.Build.0 = Release|Any CPU
{CFDE5EE8-68EF-43CD-A0E9-EE5A399F5E03}.Release|x86.ActiveCfg = Release|Any CPU
{CFDE5EE8-68EF-43CD-A0E9-EE5A399F5E03}.Release|x86.Build.0 = Release|Any CPU
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|x64.ActiveCfg = Debug|Any CPU
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|x64.Build.0 = Debug|Any CPU
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|x86.ActiveCfg = Debug|Any CPU
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|x86.Build.0 = Debug|Any CPU
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|Any CPU.Build.0 = Release|Any CPU
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|x64.ActiveCfg = Release|Any CPU
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|x64.Build.0 = Release|Any CPU
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|x86.ActiveCfg = Release|Any CPU
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|x86.Build.0 = Release|Any CPU
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|Any CPU.ActiveCfg = Debug|x86
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|x64.ActiveCfg = Debug|x86
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|x86.ActiveCfg = Debug|x86
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|x86.Build.0 = Debug|x86
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|Any CPU.ActiveCfg = Release|x86
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|x64.ActiveCfg = Release|x86
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|x86.ActiveCfg = Release|x86
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
RESX_AutoCreateNewLanguageFiles = False
RESX_ResXSortingComparison = OrdinalIgnoreCase
RESX_SortFileContentOnSave = True
RESX_SaveFilesImmediatelyUponChange = True
RESX_SortFileContentOnSave = True
RESX_ResXSortingComparison = OrdinalIgnoreCase
RESX_AutoCreateNewLanguageFiles = False
EndGlobalSection
EndGlobal
21 changes: 11 additions & 10 deletions src/libvideo/libvideo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,23 @@
<TargetFrameworkProfile>Profile111</TargetFrameworkProfile>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Compile Include="AdaptiveKind.cs" />
Expand Down

0 comments on commit 60752eb

Please sign in to comment.