From 8bdd2e13bfa275ed47b0f763a7e4d481c01fd807 Mon Sep 17 00:00:00 2001 From: Mister_Nebula <41904486+misternebula@users.noreply.github.com> Date: Sat, 11 Apr 2020 18:31:07 +0100 Subject: [PATCH] Add project files. --- Marshmallow.sln | 25 +++++++++++++ Marshmallow/Class1.cs | 11 ++++++ Marshmallow/Marshmallow.csproj | 50 ++++++++++++++++++++++++++ Marshmallow/Properties/AssemblyInfo.cs | 36 +++++++++++++++++++ 4 files changed, 122 insertions(+) create mode 100644 Marshmallow.sln create mode 100644 Marshmallow/Class1.cs create mode 100644 Marshmallow/Marshmallow.csproj create mode 100644 Marshmallow/Properties/AssemblyInfo.cs diff --git a/Marshmallow.sln b/Marshmallow.sln new file mode 100644 index 00000000..46bc3ada --- /dev/null +++ b/Marshmallow.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29709.97 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Marshmallow", "Marshmallow\Marshmallow.csproj", "{6BDE7833-A385-4A73-A121-8335D5E875C0}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6BDE7833-A385-4A73-A121-8335D5E875C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6BDE7833-A385-4A73-A121-8335D5E875C0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6BDE7833-A385-4A73-A121-8335D5E875C0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6BDE7833-A385-4A73-A121-8335D5E875C0}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {9FF9AB39-5AD2-4CCA-B9B8-BF3A352FFAB1} + EndGlobalSection +EndGlobal diff --git a/Marshmallow/Class1.cs b/Marshmallow/Class1.cs new file mode 100644 index 00000000..90d4e45e --- /dev/null +++ b/Marshmallow/Class1.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Marshmallow +{ + public class Class1 + { + } +} diff --git a/Marshmallow/Marshmallow.csproj b/Marshmallow/Marshmallow.csproj new file mode 100644 index 00000000..c4498a56 --- /dev/null +++ b/Marshmallow/Marshmallow.csproj @@ -0,0 +1,50 @@ + + + + + Debug + AnyCPU + 6bde7833-a385-4a73-a121-8335d5e875c0 + Library + Properties + Marshmallow + Marshmallow + v3.5 + 512 + true + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + diff --git a/Marshmallow/Properties/AssemblyInfo.cs b/Marshmallow/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..51474b26 --- /dev/null +++ b/Marshmallow/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +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("Marshmallow")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Marshmallow")] +[assembly: AssemblyCopyright("Copyright © 2020")] +[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("6bde7833-a385-4a73-a121-8335d5e875c0")] + +// 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")]