From 6c7e8790ff75a579fda5afa3e7c6c9cb998b052f Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Thu, 6 Oct 2016 16:18:28 -0400 Subject: [PATCH] Add project files. --- SharpFog.sln | 32 +++++++++++++++++++++++++ global.json | 6 +++++ src/SharpFog/Class1.cs | 14 +++++++++++ src/SharpFog/Properties/AssemblyInfo.cs | 19 +++++++++++++++ src/SharpFog/SharpFog.xproj | 21 ++++++++++++++++ src/SharpFog/project.json | 13 ++++++++++ 6 files changed, 105 insertions(+) create mode 100644 SharpFog.sln create mode 100644 global.json create mode 100644 src/SharpFog/Class1.cs create mode 100644 src/SharpFog/Properties/AssemblyInfo.cs create mode 100644 src/SharpFog/SharpFog.xproj create mode 100644 src/SharpFog/project.json diff --git a/SharpFog.sln b/SharpFog.sln new file mode 100644 index 0000000..546e764 --- /dev/null +++ b/SharpFog.sln @@ -0,0 +1,32 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{7EA33035-4E78-4F69-9F20-A8E1B5A23C14}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4E33770A-2CA9-4945-9B9C-BE52719B4755}" + ProjectSection(SolutionItems) = preProject + global.json = global.json + EndProjectSection +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "SharpFog", "src\SharpFog\SharpFog.xproj", "{DA1A4084-1C95-4F60-98BE-A9A3B4E94654}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DA1A4084-1C95-4F60-98BE-A9A3B4E94654}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DA1A4084-1C95-4F60-98BE-A9A3B4E94654}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DA1A4084-1C95-4F60-98BE-A9A3B4E94654}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DA1A4084-1C95-4F60-98BE-A9A3B4E94654}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {DA1A4084-1C95-4F60-98BE-A9A3B4E94654} = {7EA33035-4E78-4F69-9F20-A8E1B5A23C14} + EndGlobalSection +EndGlobal diff --git a/global.json b/global.json new file mode 100644 index 0000000..e793049 --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "projects": [ "src", "test" ], + "sdk": { + "version": "1.0.0-preview2-003121" + } +} diff --git a/src/SharpFog/Class1.cs b/src/SharpFog/Class1.cs new file mode 100644 index 0000000..9767d2f --- /dev/null +++ b/src/SharpFog/Class1.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace SharpFog +{ + public class Class1 + { + public Class1() + { + } + } +} diff --git a/src/SharpFog/Properties/AssemblyInfo.cs b/src/SharpFog/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..738a882 --- /dev/null +++ b/src/SharpFog/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("SharpFog")] +[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("da1a4084-1c95-4f60-98be-a9a3b4e94654")] diff --git a/src/SharpFog/SharpFog.xproj b/src/SharpFog/SharpFog.xproj new file mode 100644 index 0000000..a733f7a --- /dev/null +++ b/src/SharpFog/SharpFog.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + da1a4084-1c95-4f60-98be-a9a3b4e94654 + SharpFog + .\obj + .\bin\ + v4.5 + + + + 2.0 + + + diff --git a/src/SharpFog/project.json b/src/SharpFog/project.json new file mode 100644 index 0000000..864b9a5 --- /dev/null +++ b/src/SharpFog/project.json @@ -0,0 +1,13 @@ +{ + "version": "1.0.0-*", + + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + + "frameworks": { + "netstandard1.6": { + "imports": "dnxcore50" + } + } +}