From 94f36c63c74949f24b41619b7e9963def0535728 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thea=20Sch=C3=B6bl?= Date: Sun, 25 Nov 2018 16:47:48 +0100 Subject: [PATCH] Add project files. --- BeatMapLanguage.sln | 25 +++++++++++ BeatMapLanguage/App.config | 6 +++ BeatMapLanguage/BeatMapLanguage.csproj | 52 ++++++++++++++++++++++ BeatMapLanguage/Program.cs | 15 +++++++ BeatMapLanguage/Properties/AssemblyInfo.cs | 36 +++++++++++++++ 5 files changed, 134 insertions(+) create mode 100644 BeatMapLanguage.sln create mode 100644 BeatMapLanguage/App.config create mode 100644 BeatMapLanguage/BeatMapLanguage.csproj create mode 100644 BeatMapLanguage/Program.cs create mode 100644 BeatMapLanguage/Properties/AssemblyInfo.cs diff --git a/BeatMapLanguage.sln b/BeatMapLanguage.sln new file mode 100644 index 0000000..e160626 --- /dev/null +++ b/BeatMapLanguage.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27703.2035 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BeatMapLanguage", "BeatMapLanguage\BeatMapLanguage.csproj", "{B099BC20-CBD3-44CD-8C4E-E93B0B463192}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B099BC20-CBD3-44CD-8C4E-E93B0B463192}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B099BC20-CBD3-44CD-8C4E-E93B0B463192}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B099BC20-CBD3-44CD-8C4E-E93B0B463192}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B099BC20-CBD3-44CD-8C4E-E93B0B463192}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {156D2A19-3A8D-40C5-A7DD-9CC77E1BE2EA} + EndGlobalSection +EndGlobal diff --git a/BeatMapLanguage/App.config b/BeatMapLanguage/App.config new file mode 100644 index 0000000..731f6de --- /dev/null +++ b/BeatMapLanguage/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/BeatMapLanguage/BeatMapLanguage.csproj b/BeatMapLanguage/BeatMapLanguage.csproj new file mode 100644 index 0000000..e8138eb --- /dev/null +++ b/BeatMapLanguage/BeatMapLanguage.csproj @@ -0,0 +1,52 @@ + + + + + Debug + AnyCPU + {B099BC20-CBD3-44CD-8C4E-E93B0B463192} + Exe + BeatMapLanguage + BeatMapLanguage + v4.6.1 + 512 + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/BeatMapLanguage/Program.cs b/BeatMapLanguage/Program.cs new file mode 100644 index 0000000..d96ec9c --- /dev/null +++ b/BeatMapLanguage/Program.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BeatMapLanguage +{ + class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/BeatMapLanguage/Properties/AssemblyInfo.cs b/BeatMapLanguage/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..26d33ec --- /dev/null +++ b/BeatMapLanguage/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("BeatMapLanguage")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("BeatMapLanguage")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[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("b099bc20-cbd3-44cd-8c4e-e93b0b463192")] + +// 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")]