Skip to content

Commit 9be590b

Browse files
committed
Separate manager into two applications
1 parent 8d9747a commit 9be590b

51 files changed

Lines changed: 5101 additions & 1437 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
bin/
33
obj/
44
packages/
5-
FlashpointManager.csproj.user
5+
*.csproj.user
66
FodyWeavers.xsd
7-
FodyWeavers.xml
7+
FodyWeavers.xml

FlashpointInstaller/FlashpointInstaller.csproj

Lines changed: 367 additions & 0 deletions
Large diffs are not rendered by default.

FlashpointManager.ico renamed to FlashpointInstaller/FlashpointInstaller.ico

File renamed without changes.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.2.32616.157
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FlashpointInstaller", "FlashpointInstaller.csproj", "{3A52CEC9-3EEC-4ED4-8E21-51635A08AC38}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Debug|x86 = Debug|x86
12+
Release|Any CPU = Release|Any CPU
13+
Release|x86 = Release|x86
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{3A52CEC9-3EEC-4ED4-8E21-51635A08AC38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{3A52CEC9-3EEC-4ED4-8E21-51635A08AC38}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{3A52CEC9-3EEC-4ED4-8E21-51635A08AC38}.Debug|x86.ActiveCfg = Debug|x86
19+
{3A52CEC9-3EEC-4ED4-8E21-51635A08AC38}.Debug|x86.Build.0 = Debug|x86
20+
{3A52CEC9-3EEC-4ED4-8E21-51635A08AC38}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{3A52CEC9-3EEC-4ED4-8E21-51635A08AC38}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{3A52CEC9-3EEC-4ED4-8E21-51635A08AC38}.Release|x86.ActiveCfg = Release|x86
23+
{3A52CEC9-3EEC-4ED4-8E21-51635A08AC38}.Release|x86.Build.0 = Release|x86
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {F7D16A14-B30F-464C-9278-7F0A094AD68F}
30+
EndGlobalSection
31+
EndGlobal
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
using System.Reflection;
2+
using System.Runtime.InteropServices;
3+
4+
// General Information about an assembly is controlled through the following
5+
// set of attributes. Change these attribute values to modify the information
6+
// associated with an assembly.
7+
[assembly: AssemblyTitle("Flashpoint Installer")]
8+
[assembly: AssemblyDescription("Installs Flashpoint and its components.")]
9+
[assembly: AssemblyConfiguration("")]
10+
[assembly: AssemblyCompany("")]
11+
[assembly: AssemblyProduct("Flashpoint Installer")]
12+
[assembly: AssemblyCopyright("")]
13+
[assembly: AssemblyTrademark("")]
14+
[assembly: AssemblyCulture("")]
15+
16+
// Setting ComVisible to false makes the types in this assembly not visible
17+
// to COM components. If you need to access a type in this assembly from
18+
// COM, set the ComVisible attribute to true on that type.
19+
[assembly: ComVisible(false)]
20+
21+
// The following GUID is for the ID of the typelib if this project is exposed to COM
22+
[assembly: Guid("3a52cec9-3eec-4ed4-8e21-51635a08ac38")]
23+
24+
// Version information for an assembly consists of the following four values:
25+
//
26+
// Major Version
27+
// Minor Version
28+
// Build Number
29+
// Revision
30+
//
31+
// You can specify all the values or you can default the Build and Revision Numbers
32+
// by using the '*' as shown below:
33+
// [assembly: AssemblyVersion("1.0.*")]
34+
[assembly: AssemblyVersion("1.0.0.0")]
35+
[assembly: AssemblyFileVersion("1.0-beta3")]

FlashpointInstaller/Properties/Resources.Designer.cs

Lines changed: 63 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

FlashpointInstaller/Properties/Settings.Designer.cs

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

0 commit comments

Comments
 (0)