From 776ba9dc0af07396658e796e0680754e2812fcfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= <2108U9@gmail.com> Date: Fri, 5 Jan 2018 06:52:34 +0100 Subject: [PATCH] Add project files. --- MLAPI.sln | 25 +++++++++++++++ MLAPI/Class1.cs | 12 ++++++++ MLAPI/MLAPI.csproj | 53 ++++++++++++++++++++++++++++++++ MLAPI/Properties/AssemblyInfo.cs | 36 ++++++++++++++++++++++ 4 files changed, 126 insertions(+) create mode 100644 MLAPI.sln create mode 100644 MLAPI/Class1.cs create mode 100644 MLAPI/MLAPI.csproj create mode 100644 MLAPI/Properties/AssemblyInfo.cs diff --git a/MLAPI.sln b/MLAPI.sln new file mode 100644 index 0000000..bed327f --- /dev/null +++ b/MLAPI.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.27130.2010 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MLAPI", "MLAPI\MLAPI.csproj", "{EE431720-A9ED-43DC-9E74-10B693816D38}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EE431720-A9ED-43DC-9E74-10B693816D38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EE431720-A9ED-43DC-9E74-10B693816D38}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EE431720-A9ED-43DC-9E74-10B693816D38}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EE431720-A9ED-43DC-9E74-10B693816D38}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {7C39A35F-858D-4594-94A7-CB3837EB2295} + EndGlobalSection +EndGlobal diff --git a/MLAPI/Class1.cs b/MLAPI/Class1.cs new file mode 100644 index 0000000..a484755 --- /dev/null +++ b/MLAPI/Class1.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace MLAPI +{ + public class Class1 + { + } +} diff --git a/MLAPI/MLAPI.csproj b/MLAPI/MLAPI.csproj new file mode 100644 index 0000000..b9a427a --- /dev/null +++ b/MLAPI/MLAPI.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + ee431720-a9ed-43dc-9e74-10b693816d38 + Library + Properties + MLAPI + MLAPI + v4.6.1 + 512 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MLAPI/Properties/AssemblyInfo.cs b/MLAPI/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..db76e71 --- /dev/null +++ b/MLAPI/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("MLAPI")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("MLAPI")] +[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("ee431720-a9ed-43dc-9e74-10b693816d38")] + +// 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")]