Skip to content

Commit a66a09a

Browse files
Create ASP.net 5 empty project for Peloton test.
0 parents  commit a66a09a

File tree

6 files changed

+113
-0
lines changed

6 files changed

+113
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.vs/
2+
*.user
3+
*.lock.json

StreamMerge.sln

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.22823.1
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{7E8E6790-35A1-4242-A21A-982DD8EC3B2F}"
7+
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{AC02EAC9-16C0-4C25-ADA8-A657E010A104}"
9+
ProjectSection(SolutionItems) = preProject
10+
global.json = global.json
11+
EndProjectSection
12+
EndProject
13+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "StreamMerge", "src\StreamMerge\StreamMerge.xproj", "{E86F9012-D1E3-4519-95F0-C64D1AF7F006}"
14+
EndProject
15+
Global
16+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
17+
Debug|Any CPU = Debug|Any CPU
18+
Release|Any CPU = Release|Any CPU
19+
EndGlobalSection
20+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
21+
{E86F9012-D1E3-4519-95F0-C64D1AF7F006}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
22+
{E86F9012-D1E3-4519-95F0-C64D1AF7F006}.Debug|Any CPU.Build.0 = Debug|Any CPU
23+
{E86F9012-D1E3-4519-95F0-C64D1AF7F006}.Release|Any CPU.ActiveCfg = Release|Any CPU
24+
{E86F9012-D1E3-4519-95F0-C64D1AF7F006}.Release|Any CPU.Build.0 = Release|Any CPU
25+
EndGlobalSection
26+
GlobalSection(SolutionProperties) = preSolution
27+
HideSolutionNode = FALSE
28+
EndGlobalSection
29+
GlobalSection(NestedProjects) = preSolution
30+
{E86F9012-D1E3-4519-95F0-C64D1AF7F006} = {7E8E6790-35A1-4242-A21A-982DD8EC3B2F}
31+
EndGlobalSection
32+
EndGlobal

global.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"projects": [ "src", "test" ],
3+
"sdk": {
4+
"version": "1.0.0-beta4"
5+
}
6+
}

src/StreamMerge/Startup.cs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using Microsoft.AspNet.Builder;
6+
using Microsoft.AspNet.Http;
7+
using Microsoft.Framework.DependencyInjection;
8+
9+
namespace StreamMerge
10+
{
11+
public class Startup
12+
{
13+
// For more information on how to configure your application, visit http://go.microsoft.com/fwlink/?LinkID=398940
14+
public void ConfigureServices(IServiceCollection services)
15+
{
16+
}
17+
18+
public void Configure(IApplicationBuilder app)
19+
{
20+
}
21+
}
22+
}

src/StreamMerge/StreamMerge.xproj

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
5+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
6+
</PropertyGroup>
7+
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.Props" Condition="'$(VSToolsPath)' != ''" />
8+
<PropertyGroup Label="Globals">
9+
<ProjectGuid>e86f9012-d1e3-4519-95f0-c64d1af7f006</ProjectGuid>
10+
<RootNamespace>StreamMerge</RootNamespace>
11+
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
12+
<OutputPath Condition="'$(OutputPath)'=='' ">..\..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
13+
</PropertyGroup>
14+
<PropertyGroup>
15+
<SchemaVersion>2.0</SchemaVersion>
16+
<DevelopmentServerPort>3922</DevelopmentServerPort>
17+
</PropertyGroup>
18+
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" />
19+
</Project>

src/StreamMerge/project.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"webroot": "wwwroot",
3+
"version": "1.0.0-*",
4+
5+
"dependencies": {
6+
"Microsoft.AspNet.Server.IIS": "1.0.0-beta4",
7+
"Microsoft.AspNet.Server.WebListener": "1.0.0-beta4"
8+
},
9+
10+
"commands": {
11+
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5000"
12+
},
13+
14+
"frameworks": {
15+
"dnx451": { },
16+
"dnxcore50": { }
17+
},
18+
19+
"publishExclude": [
20+
"node_modules",
21+
"bower_components",
22+
"**.xproj",
23+
"**.user",
24+
"**.vspscc"
25+
],
26+
"exclude": [
27+
"wwwroot",
28+
"node_modules",
29+
"bower_components"
30+
]
31+
}

0 commit comments

Comments
 (0)