diff --git a/FluentUriBuilder.sln b/FluentUriBuilder.sln new file mode 100644 index 0000000..8a52910 --- /dev/null +++ b/FluentUriBuilder.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", "{F9CD17B2-71B0-4193-8028-541403725E0D}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{69D35DAA-8C10-4BDF-8457-A6F874099677}" + ProjectSection(SolutionItems) = preProject + global.json = global.json + EndProjectSection +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "FluentUriBuilder", "src\FluentUriBuilder\FluentUriBuilder.xproj", "{F6EA52B1-1BC1-490B-A348-87E83C63F24B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F6EA52B1-1BC1-490B-A348-87E83C63F24B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F6EA52B1-1BC1-490B-A348-87E83C63F24B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F6EA52B1-1BC1-490B-A348-87E83C63F24B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F6EA52B1-1BC1-490B-A348-87E83C63F24B}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {F6EA52B1-1BC1-490B-A348-87E83C63F24B} = {F9CD17B2-71B0-4193-8028-541403725E0D} + 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/FluentUriBuilder/Class1.cs b/src/FluentUriBuilder/Class1.cs new file mode 100644 index 0000000..f3d076a --- /dev/null +++ b/src/FluentUriBuilder/Class1.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace FluentUriBuilder +{ + public class Class1 + { + public Class1() + { + } + } +} diff --git a/src/FluentUriBuilder/FluentUriBuilder.xproj b/src/FluentUriBuilder/FluentUriBuilder.xproj new file mode 100644 index 0000000..cc0b519 --- /dev/null +++ b/src/FluentUriBuilder/FluentUriBuilder.xproj @@ -0,0 +1,21 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + f6ea52b1-1bc1-490b-a348-87e83c63f24b + FluentUriBuilder + .\obj + .\bin\ + v4.5 + + + + 2.0 + + + diff --git a/src/FluentUriBuilder/Properties/AssemblyInfo.cs b/src/FluentUriBuilder/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..b27d58e --- /dev/null +++ b/src/FluentUriBuilder/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("FluentUriBuilder")] +[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("f6ea52b1-1bc1-490b-a348-87e83c63f24b")] diff --git a/src/FluentUriBuilder/project.json b/src/FluentUriBuilder/project.json new file mode 100644 index 0000000..864b9a5 --- /dev/null +++ b/src/FluentUriBuilder/project.json @@ -0,0 +1,13 @@ +{ + "version": "1.0.0-*", + + "dependencies": { + "NETStandard.Library": "1.6.0" + }, + + "frameworks": { + "netstandard1.6": { + "imports": "dnxcore50" + } + } +}