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

Commit 60752eb

Browse files
author
Christian Klemm
committed
Fixed platform
1 parent b599d69 commit 60752eb

File tree

2 files changed

+22
-25
lines changed

2 files changed

+22
-25
lines changed

src/YTMusicDownloader.sln

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -89,26 +89,22 @@ Global
8989
{CFDE5EE8-68EF-43CD-A0E9-EE5A399F5E03}.Release|x64.Build.0 = Release|Any CPU
9090
{CFDE5EE8-68EF-43CD-A0E9-EE5A399F5E03}.Release|x86.ActiveCfg = Release|Any CPU
9191
{CFDE5EE8-68EF-43CD-A0E9-EE5A399F5E03}.Release|x86.Build.0 = Release|Any CPU
92-
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
93-
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|Any CPU.Build.0 = Debug|Any CPU
94-
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|x64.ActiveCfg = Debug|Any CPU
95-
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|x64.Build.0 = Debug|Any CPU
96-
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|x86.ActiveCfg = Debug|Any CPU
97-
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|x86.Build.0 = Debug|Any CPU
98-
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|Any CPU.ActiveCfg = Release|Any CPU
99-
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|Any CPU.Build.0 = Release|Any CPU
100-
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|x64.ActiveCfg = Release|Any CPU
101-
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|x64.Build.0 = Release|Any CPU
102-
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|x86.ActiveCfg = Release|Any CPU
103-
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|x86.Build.0 = Release|Any CPU
92+
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|Any CPU.ActiveCfg = Debug|x86
93+
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|x64.ActiveCfg = Debug|x86
94+
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|x86.ActiveCfg = Debug|x86
95+
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Debug|x86.Build.0 = Debug|x86
96+
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|Any CPU.ActiveCfg = Release|x86
97+
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|x64.ActiveCfg = Release|x86
98+
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|x86.ActiveCfg = Release|x86
99+
{4DFEDF29-6CB3-4369-8ED9-104A34B8A045}.Release|x86.Build.0 = Release|x86
104100
EndGlobalSection
105101
GlobalSection(SolutionProperties) = preSolution
106102
HideSolutionNode = FALSE
107103
EndGlobalSection
108104
GlobalSection(ExtensibilityGlobals) = postSolution
109-
RESX_AutoCreateNewLanguageFiles = False
110-
RESX_ResXSortingComparison = OrdinalIgnoreCase
111-
RESX_SortFileContentOnSave = True
112105
RESX_SaveFilesImmediatelyUponChange = True
106+
RESX_SortFileContentOnSave = True
107+
RESX_ResXSortingComparison = OrdinalIgnoreCase
108+
RESX_AutoCreateNewLanguageFiles = False
113109
EndGlobalSection
114110
EndGlobal

src/libvideo/libvideo.csproj

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,23 @@
1616
<TargetFrameworkProfile>Profile111</TargetFrameworkProfile>
1717
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1818
</PropertyGroup>
19-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
2020
<DebugSymbols>true</DebugSymbols>
21-
<DebugType>full</DebugType>
22-
<Optimize>false</Optimize>
23-
<OutputPath>bin\Debug\</OutputPath>
21+
<OutputPath>bin\x86\Debug\</OutputPath>
2422
<DefineConstants>DEBUG;TRACE</DefineConstants>
23+
<DebugType>full</DebugType>
24+
<PlatformTarget>x86</PlatformTarget>
2525
<ErrorReport>prompt</ErrorReport>
26-
<WarningLevel>4</WarningLevel>
26+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2727
</PropertyGroup>
28-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29-
<DebugType>pdbonly</DebugType>
30-
<Optimize>true</Optimize>
31-
<OutputPath>bin\Release\</OutputPath>
28+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
29+
<OutputPath>bin\x86\Release\</OutputPath>
3230
<DefineConstants>TRACE</DefineConstants>
31+
<Optimize>true</Optimize>
32+
<DebugType>pdbonly</DebugType>
33+
<PlatformTarget>x86</PlatformTarget>
3334
<ErrorReport>prompt</ErrorReport>
34-
<WarningLevel>4</WarningLevel>
35+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
3536
</PropertyGroup>
3637
<ItemGroup>
3738
<Compile Include="AdaptiveKind.cs" />

0 commit comments

Comments
 (0)