From da5f7fd482e75095779bfcc83e321a2a49071870 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Fri, 23 Dec 2016 11:14:12 -0500 Subject: [PATCH] Add project files. --- HardHat.sln | 32 ++++++++++++++++++++++++++ global.json | 6 +++++ src/HardHat/Class1.cs | 14 +++++++++++ src/HardHat/HardHat.xproj | 21 +++++++++++++++++ src/HardHat/Properties/AssemblyInfo.cs | 19 +++++++++++++++ src/HardHat/project.json | 13 +++++++++++ 6 files changed, 105 insertions(+) create mode 100644 HardHat.sln create mode 100644 global.json create mode 100644 src/HardHat/Class1.cs create mode 100644 src/HardHat/HardHat.xproj create mode 100644 src/HardHat/Properties/AssemblyInfo.cs create mode 100644 src/HardHat/project.json diff --git a/HardHat.sln b/HardHat.sln new file mode 100644 index 0000000..fd79b4b --- /dev/null +++ b/HardHat.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", "{2213F1A9-1E90-473E-A04F-F089BBC16098}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{597DE320-32E2-4B4E-80E5-33838AA160E5}" + ProjectSection(SolutionItems) = preProject + global.json = global.json + EndProjectSection +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HardHat", "src\HardHat\HardHat.xproj", "{B4448494-6C80-4BDA-890C-D8900B33FE17}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {B4448494-6C80-4BDA-890C-D8900B33FE17}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B4448494-6C80-4BDA-890C-D8900B33FE17}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B4448494-6C80-4BDA-890C-D8900B33FE17}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B4448494-6C80-4BDA-890C-D8900B33FE17}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {B4448494-6C80-4BDA-890C-D8900B33FE17} = {2213F1A9-1E90-473E-A04F-F089BBC16098} + EndGlobalSection +EndGlobal diff --git a/global.json b/global.json new file mode 100644 index 0000000..9d09ab5 --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "projects": [ "src", "test" ], + "sdk": { + "version": "1.0.0-preview2-003131" + } +} diff --git a/src/HardHat/Class1.cs b/src/HardHat/Class1.cs new file mode 100644 index 0000000..b760452 --- /dev/null +++ b/src/HardHat/Class1.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace HardHat +{ + public class Class1 + { + public Class1() + { + } + } +} diff --git a/src/HardHat/HardHat.xproj b/src/HardHat/HardHat.xproj new file mode 100644 index 0000000..7682e7e --- /dev/null +++ b/src/HardHat/HardHat.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + b4448494-6c80-4bda-890c-d8900b33fe17 + HardHat + .\obj + .\bin\ + v4.6.2 + + + + 2.0 + + + diff --git a/src/HardHat/Properties/AssemblyInfo.cs b/src/HardHat/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..2f02053 --- /dev/null +++ b/src/HardHat/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("HardHat")] +[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("b4448494-6c80-4bda-890c-d8900b33fe17")] diff --git a/src/HardHat/project.json b/src/HardHat/project.json new file mode 100644 index 0000000..864b9a5 --- /dev/null +++ b/src/HardHat/project.json @@ -0,0 +1,13 @@ +{ + "version": "1.0.0-*", + + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + + "frameworks": { + "netstandard1.6": { + "imports": "dnxcore50" + } + } +}