diff --git a/.gitignore b/.gitignore index e915029..0d0d052 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,7 @@ ################################################################################ /.vs +/LibMpc/LibMpc.xproj.user +/LibMpc/obj/Debug/netstandard1.6 +/LibMpc/bin/Debug/netstandard1.6 +/LibMpc/project.lock.json diff --git a/LibMpc.sln b/LibMpc.sln new file mode 100644 index 0000000..36a5f13 --- /dev/null +++ b/LibMpc.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "LibMpc", "LibMpc\LibMpc.xproj", "{8994C820-7BA9-4BB8-B9EA-C608B07C4A11}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8994C820-7BA9-4BB8-B9EA-C608B07C4A11}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8994C820-7BA9-4BB8-B9EA-C608B07C4A11}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8994C820-7BA9-4BB8-B9EA-C608B07C4A11}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8994C820-7BA9-4BB8-B9EA-C608B07C4A11}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/LibMpc/LibMpc.xproj b/LibMpc/LibMpc.xproj new file mode 100644 index 0000000..d2e8a1e --- /dev/null +++ b/LibMpc/LibMpc.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + 8994c820-7ba9-4bb8-b9ea-c608b07c4a11 + LibMpc + .\obj + .\bin\ + v4.5.2 + + + + 2.0 + + + diff --git a/LibMpc/Properties/AssemblyInfo.cs b/LibMpc/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..402fe37 --- /dev/null +++ b/LibMpc/Properties/AssemblyInfo.cs @@ -0,0 +1,19 @@ +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: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("LibMpc")] +[assembly: AssemblyTrademark("")] + +// 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("8994c820-7ba9-4bb8-b9ea-c608b07c4a11")] diff --git a/LibMpc/project.json b/LibMpc/project.json new file mode 100644 index 0000000..864b9a5 --- /dev/null +++ b/LibMpc/project.json @@ -0,0 +1,13 @@ +{ + "version": "1.0.0-*", + + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + + "frameworks": { + "netstandard1.6": { + "imports": "dnxcore50" + } + } +}