From 93ae959c8af2eec133cdad1655c30a32dadcf4b1 Mon Sep 17 00:00:00 2001 From: Xevion Date: Fri, 14 Jul 2023 13:25:21 -0500 Subject: [PATCH] Setup Project solution, move around About XMLs --- .../About => About}/About.xml | 0 .../About => About}/Preview.png | Bin Source/HydroponicsExpanded/.gitignore | 5 ++ Source/HydroponicsExpanded/Class1.cs | 4 ++ .../HydroponicsExpanded.csproj | 53 ++++++++++++++++++ .../HydroponicsExpanded.sln | 16 ++++++ .../Properties/AssemblyInfo.cs | 35 ++++++++++++ 7 files changed, 113 insertions(+) rename {HydroponicsExpanded/About => About}/About.xml (100%) rename {HydroponicsExpanded/About => About}/Preview.png (100%) create mode 100644 Source/HydroponicsExpanded/.gitignore create mode 100644 Source/HydroponicsExpanded/Class1.cs create mode 100644 Source/HydroponicsExpanded/HydroponicsExpanded.csproj create mode 100644 Source/HydroponicsExpanded/HydroponicsExpanded.sln create mode 100644 Source/HydroponicsExpanded/Properties/AssemblyInfo.cs diff --git a/HydroponicsExpanded/About/About.xml b/About/About.xml similarity index 100% rename from HydroponicsExpanded/About/About.xml rename to About/About.xml diff --git a/HydroponicsExpanded/About/Preview.png b/About/Preview.png similarity index 100% rename from HydroponicsExpanded/About/Preview.png rename to About/Preview.png diff --git a/Source/HydroponicsExpanded/.gitignore b/Source/HydroponicsExpanded/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/Source/HydroponicsExpanded/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/Source/HydroponicsExpanded/Class1.cs b/Source/HydroponicsExpanded/Class1.cs new file mode 100644 index 0000000..b2032d4 --- /dev/null +++ b/Source/HydroponicsExpanded/Class1.cs @@ -0,0 +1,4 @@ +namespace HydroponicsExpanded { + public class Class1 { + } +} \ No newline at end of file diff --git a/Source/HydroponicsExpanded/HydroponicsExpanded.csproj b/Source/HydroponicsExpanded/HydroponicsExpanded.csproj new file mode 100644 index 0000000..a4c2125 --- /dev/null +++ b/Source/HydroponicsExpanded/HydroponicsExpanded.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {8390B8ED-86EF-4674-8CBC-85ECA7E67657} + Library + Properties + HydroponicsExpanded + HydroponicsExpanded + v4.0 + 512 + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + diff --git a/Source/HydroponicsExpanded/HydroponicsExpanded.sln b/Source/HydroponicsExpanded/HydroponicsExpanded.sln new file mode 100644 index 0000000..a7c8da5 --- /dev/null +++ b/Source/HydroponicsExpanded/HydroponicsExpanded.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HydroponicsExpanded", "HydroponicsExpanded.csproj", "{8390B8ED-86EF-4674-8CBC-85ECA7E67657}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8390B8ED-86EF-4674-8CBC-85ECA7E67657}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8390B8ED-86EF-4674-8CBC-85ECA7E67657}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8390B8ED-86EF-4674-8CBC-85ECA7E67657}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8390B8ED-86EF-4674-8CBC-85ECA7E67657}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/Source/HydroponicsExpanded/Properties/AssemblyInfo.cs b/Source/HydroponicsExpanded/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..3f0d8b5 --- /dev/null +++ b/Source/HydroponicsExpanded/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("HydroponicsExpanded")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("HydroponicsExpanded")] +[assembly: AssemblyCopyright("Copyright © 2023")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("8390B8ED-86EF-4674-8CBC-85ECA7E67657")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] \ No newline at end of file