Skip to content

Commit

Permalink
Added file dialog, links
Browse files Browse the repository at this point in the history
  • Loading branch information
bugworm committed Jun 17, 2020
1 parent b288c17 commit d7ffd9b
Show file tree
Hide file tree
Showing 8 changed files with 325 additions and 38 deletions.
13 changes: 11 additions & 2 deletions BorderlandsPatcher.sln
Original file line number Diff line number Diff line change
@@ -1,22 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
# Visual Studio Version 16
VisualStudioVersion = 16.0.30204.135
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BorderlandsPatcher", "BorderlandsPatcher\BorderlandsPatcher.csproj", "{07669442-4B55-47C2-BBDF-B918BB5BA8E3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{07669442-4B55-47C2-BBDF-B918BB5BA8E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{07669442-4B55-47C2-BBDF-B918BB5BA8E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{07669442-4B55-47C2-BBDF-B918BB5BA8E3}.Debug|x86.ActiveCfg = Debug|x86
{07669442-4B55-47C2-BBDF-B918BB5BA8E3}.Debug|x86.Build.0 = Debug|x86
{07669442-4B55-47C2-BBDF-B918BB5BA8E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{07669442-4B55-47C2-BBDF-B918BB5BA8E3}.Release|Any CPU.Build.0 = Release|Any CPU
{07669442-4B55-47C2-BBDF-B918BB5BA8E3}.Release|x86.ActiveCfg = Release|x86
{07669442-4B55-47C2-BBDF-B918BB5BA8E3}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D0085176-4003-40AA-8FC3-54F74A0339E2}
EndGlobalSection
EndGlobal
45 changes: 45 additions & 0 deletions BorderlandsPatcher/BorderlandsPatcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,21 @@
<AssemblyName>BorderlandsPatcher</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand All @@ -34,6 +49,28 @@
<PropertyGroup>
<ApplicationIcon>borderlands-logo_256x256.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<LangVersion>7.3</LangVersion>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down Expand Up @@ -85,6 +122,14 @@
</ItemGroup>
<ItemGroup>
<Content Include="borderlands-logo_256x256.ico" />
<None Include="Resources\84380.png" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
157 changes: 144 additions & 13 deletions BorderlandsPatcher/Form1.Designer.cs

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

Loading

0 comments on commit d7ffd9b

Please sign in to comment.