Skip to content

Commit

Permalink
Added ability to choose a custom game path (for when the game is not …
Browse files Browse the repository at this point in the history
…installed in the default Steam directory)
  • Loading branch information
Daniel-Griffiths committed Feb 4, 2018
1 parent 9bd28e8 commit b5027c1
Show file tree
Hide file tree
Showing 19 changed files with 240 additions and 184 deletions.
6 changes: 6 additions & 0 deletions DBFZ-mod-manager/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,19 @@
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="ModManager.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
<section name="DBFZ_mod_manager.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<userSettings>
<ModManager.Properties.Settings>
<setting name="gamePath" serializeAs="String">
<value>C:\Program Files (x86)\Steam\steamapps\common\DRAGON BALL FighterZ\</value>
</setting>
</ModManager.Properties.Settings>
<DBFZ_mod_manager.Properties.Settings>
<setting name="drive" serializeAs="String">
<value>C:\</value>
Expand Down
13 changes: 7 additions & 6 deletions DBFZ-mod-manager/DBFZ-mod-manager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ProjectGuid>{C361F41D-0E9C-4D90-81F6-59B41FE79085}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>DBFZ_mod_manager</RootNamespace>
<RootNamespace>ModManager</RootNamespace>
<AssemblyName>DBFZ-mod-manager</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
Expand Down Expand Up @@ -49,17 +49,18 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Form1.cs">
<Compile Include="MainForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
<Compile Include="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="Mod.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Settings.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
Expand Down
139 changes: 0 additions & 139 deletions DBFZ-mod-manager/Form1.cs

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b5027c1

Please sign in to comment.