diff --git a/EmbedImagesMiddlewear.sln b/EmbedImagesMiddlewear.sln new file mode 100644 index 0000000..8b1f20a --- /dev/null +++ b/EmbedImagesMiddlewear.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", "{CD7FBF48-5725-4DA0-B342-1C3319DD3B0A}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{1274855C-50AC-4725-B5AA-657604AD462A}" + ProjectSection(SolutionItems) = preProject + global.json = global.json + EndProjectSection +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "EmbedImagesMiddlewear", "src\EmbedImagesMiddlewear\EmbedImagesMiddlewear.xproj", "{961D39B1-890E-4210-803B-A6D269BC81BA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {961D39B1-890E-4210-803B-A6D269BC81BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {961D39B1-890E-4210-803B-A6D269BC81BA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {961D39B1-890E-4210-803B-A6D269BC81BA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {961D39B1-890E-4210-803B-A6D269BC81BA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {961D39B1-890E-4210-803B-A6D269BC81BA} = {CD7FBF48-5725-4DA0-B342-1C3319DD3B0A} + 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/EmbedImagesMiddlewear/Class1.cs b/src/EmbedImagesMiddlewear/Class1.cs new file mode 100644 index 0000000..b2e5dfd --- /dev/null +++ b/src/EmbedImagesMiddlewear/Class1.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace EmbedImagesMiddlewear +{ + public class Class1 + { + public Class1() + { + } + } +} diff --git a/src/EmbedImagesMiddlewear/EmbedImagesMiddlewear.xproj b/src/EmbedImagesMiddlewear/EmbedImagesMiddlewear.xproj new file mode 100644 index 0000000..463db94 --- /dev/null +++ b/src/EmbedImagesMiddlewear/EmbedImagesMiddlewear.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + 961d39b1-890e-4210-803b-a6d269bc81ba + EmbedImagesMiddlewear + .\obj + .\bin\ + v4.5 + + + + 2.0 + + + diff --git a/src/EmbedImagesMiddlewear/Properties/AssemblyInfo.cs b/src/EmbedImagesMiddlewear/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..76e5b41 --- /dev/null +++ b/src/EmbedImagesMiddlewear/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("EmbedImagesMiddlewear")] +[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("961d39b1-890e-4210-803b-a6d269bc81ba")] diff --git a/src/EmbedImagesMiddlewear/project.json b/src/EmbedImagesMiddlewear/project.json new file mode 100644 index 0000000..864b9a5 --- /dev/null +++ b/src/EmbedImagesMiddlewear/project.json @@ -0,0 +1,13 @@ +{ + "version": "1.0.0-*", + + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + + "frameworks": { + "netstandard1.6": { + "imports": "dnxcore50" + } + } +}