Skip to content

Commit

Permalink
Fixed force install uninstalling everything else
Browse files Browse the repository at this point in the history
  • Loading branch information
bbepis committed Mar 8, 2016
1 parent d1c1598 commit 6163822
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions AA2Install.sln
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Global
{A080BED4-153A-425E-94F3-60906AC0EA90}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{A080BED4-153A-425E-94F3-60906AC0EA90}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{A080BED4-153A-425E-94F3-60906AC0EA90}.Release|x86.ActiveCfg = Release|x86
{A080BED4-153A-425E-94F3-60906AC0EA90}.Release|x86.Build.0 = Release|x86
{5647B104-8F58-4867-B849-DAC65D5243BD}.Debug|Any CPU.ActiveCfg = Debug|x86
{5647B104-8F58-4867-B849-DAC65D5243BD}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
{5647B104-8F58-4867-B849-DAC65D5243BD}.Debug|Mixed Platforms.Build.0 = Debug|x86
Expand All @@ -56,8 +57,8 @@ Global
{26582401-179B-48BB-BC5C-72ED01575BAD}.Release|Any CPU.Build.0 = Release|Any CPU
{26582401-179B-48BB-BC5C-72ED01575BAD}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{26582401-179B-48BB-BC5C-72ED01575BAD}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{26582401-179B-48BB-BC5C-72ED01575BAD}.Release|x86.ActiveCfg = Release|Any CPU
{26582401-179B-48BB-BC5C-72ED01575BAD}.Release|x86.Build.0 = Release|Any CPU
{26582401-179B-48BB-BC5C-72ED01575BAD}.Release|x86.ActiveCfg = Release|x86
{26582401-179B-48BB-BC5C-72ED01575BAD}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
3 changes: 1 addition & 2 deletions AA2Install/formMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -971,8 +971,7 @@ public void forceSelectedMods(bool suppressDialogs = false)

if (result == DialogResult.Yes || suppressDialogs)
{
foreach (ListViewItem lsv in lsvMods.Items)
lsv.Checked = false;
refreshModList(true);

foreach (Mod m in mods)
{
Expand Down
3 changes: 2 additions & 1 deletion SB3UtilityPP/SB3UtilityPP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,15 @@
<OutputPath>..\..\bin\plugins\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>none</DebugType>
<DebugType>full</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
<UseVSHostingProcess>false</UseVSHostingProcess>
<CodeAnalysisIgnoreGeneratedCode>true</CodeAnalysisIgnoreGeneratedCode>
<CodeAnalysisRuleSet>SB3UtilityPP.ruleset</CodeAnalysisRuleSet>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
Expand Down

0 comments on commit 6163822

Please sign in to comment.