Add a solution and kproj files.

This commit is contained in:
Chris Ross 2014-12-12 14:21:12 -08:00
parent 1b2415c5b3
commit 0ae0435e98
5 changed files with 135 additions and 1 deletions

3
.gitignore vendored
View File

@ -21,4 +21,5 @@ nuget.exe
*DS_Store *DS_Store
*.ncrunchsolution *.ncrunchsolution
*.*sdf *.*sdf
*.ipch *.ipch
*.sln.ide

41
Home.sln Normal file
View File

@ -0,0 +1,41 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.22410.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HelloWeb", "samples\HelloWeb\HelloWeb.kproj", "{8D4B2AB5-C2D2-4EE0-B751-F4126C7D0539}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ConsoleApp", "samples\ConsoleApp\ConsoleApp.kproj", "{D4F684C8-B6A4-45F0-ACA0-0D95632FF946}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HelloMvc", "samples\HelloMvc\HelloMvc.kproj", "{78627BB3-851E-4C1A-91C0-629FC7C15F8F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{F7A560B2-BCAB-44C3-93A6-496C956634DB}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{8D4B2AB5-C2D2-4EE0-B751-F4126C7D0539}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8D4B2AB5-C2D2-4EE0-B751-F4126C7D0539}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8D4B2AB5-C2D2-4EE0-B751-F4126C7D0539}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8D4B2AB5-C2D2-4EE0-B751-F4126C7D0539}.Release|Any CPU.Build.0 = Release|Any CPU
{D4F684C8-B6A4-45F0-ACA0-0D95632FF946}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D4F684C8-B6A4-45F0-ACA0-0D95632FF946}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D4F684C8-B6A4-45F0-ACA0-0D95632FF946}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D4F684C8-B6A4-45F0-ACA0-0D95632FF946}.Release|Any CPU.Build.0 = Release|Any CPU
{78627BB3-851E-4C1A-91C0-629FC7C15F8F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{78627BB3-851E-4C1A-91C0-629FC7C15F8F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{78627BB3-851E-4C1A-91C0-629FC7C15F8F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{78627BB3-851E-4C1A-91C0-629FC7C15F8F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{8D4B2AB5-C2D2-4EE0-B751-F4126C7D0539} = {F7A560B2-BCAB-44C3-93A6-496C956634DB}
{D4F684C8-B6A4-45F0-ACA0-0D95632FF946} = {F7A560B2-BCAB-44C3-93A6-496C956634DB}
{78627BB3-851E-4C1A-91C0-629FC7C15F8F} = {F7A560B2-BCAB-44C3-93A6-496C956634DB}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="__ToolsVersion__" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>d4f684c8-b6a4-45f0-aca0-0d95632ff946</ProjectGuid>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'" Label="Configuration">
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'" Label="Configuration">
</PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AssemblyName>ConsoleApp</AssemblyName>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<RootNamespace>ConsoleApp</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.targets" Condition="'$(VSToolsPath)' != ''" />
<ProjectExtensions>
<VisualStudio>
<UserProperties project_1json__JSONSchema="http://www.asp.net/media/4878834/project.json" />
</VisualStudio>
</ProjectExtensions>
</Project>

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="__ToolsVersion__" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>78627bb3-851e-4c1a-91c0-629fc7c15f8f</ProjectGuid>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'" Label="Configuration">
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'" Label="Configuration">
</PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AssemblyName>HelloMvc</AssemblyName>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<RootNamespace>HelloMvc</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
<DevelopmentServerPort>26425</DevelopmentServerPort>
</PropertyGroup>
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.targets" Condition="'$(VSToolsPath)' != ''" />
<ProjectExtensions>
<VisualStudio>
<UserProperties project_1json__JSONSchema="http://www.asp.net/media/4878834/project.json" />
</VisualStudio>
</ProjectExtensions>
</Project>

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="__ToolsVersion__" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>8d4b2ab5-c2d2-4ee0-b751-f4126c7d0539</ProjectGuid>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'" Label="Configuration">
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'" Label="Configuration">
</PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AssemblyName>HelloWeb</AssemblyName>
</PropertyGroup>
<PropertyGroup Label="Configuration">
<RootNamespace>HelloWeb</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
<DevelopmentServerPort>26235</DevelopmentServerPort>
</PropertyGroup>
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.targets" Condition="'$(VSToolsPath)' != ''" />
<ProjectExtensions>
<VisualStudio>
<UserProperties project_1json__JSONSchema="http://www.asp.net/media/4878834/project.json" />
</VisualStudio>
</ProjectExtensions>
</Project>