Skip to content
This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Commit 3ace09a

Browse files
committed
Create stub projects for Distributed cache and Session.
1 parent d9d8f4a commit 3ace09a

File tree

10 files changed

+249
-1
lines changed

10 files changed

+249
-1
lines changed

Caching.sln

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.Cache.M
1717
EndProject
1818
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "MemoryCacheConcurencySample", "samples\MemoryCacheConcurencySample\MemoryCacheConcurencySample.kproj", "{FF7C7587-BBCA-4574-95AE-101A6FF63B8F}"
1919
EndProject
20+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.Cache.Distributed", "src\Microsoft.Framework.Cache.Distributed\Microsoft.Framework.Cache.Distributed.kproj", "{74F4C074-93DD-4F7D-91CA-0F8DDC2BC6A1}"
21+
EndProject
22+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Framework.Cache.Distributed.Tests", "test\Microsoft.Framework.Cache.Distributed.Tests\Microsoft.Framework.Cache.Distributed.Tests.kproj", "{C5A8A2C1-588D-4A1A-BB1D-B33B6DD89797}"
23+
EndProject
24+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Cache.Session", "src\Microsoft.AspNet.Cache.Session\Microsoft.AspNet.Cache.Session.kproj", "{71802736-F640-4733-9671-02D267EDD76A}"
25+
EndProject
26+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNet.Cache.Session.Tests", "test\Microsoft.AspNet.Cache.Session.Tests\Microsoft.AspNet.Cache.Session.Tests.kproj", "{8C131A0A-BC1A-4CF3-8B77-8813FBFE5639}"
27+
EndProject
2028
Global
2129
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2230
Debug|Any CPU = Debug|Any CPU
@@ -39,6 +47,22 @@ Global
3947
{FF7C7587-BBCA-4574-95AE-101A6FF63B8F}.Debug|Any CPU.Build.0 = Debug|Any CPU
4048
{FF7C7587-BBCA-4574-95AE-101A6FF63B8F}.Release|Any CPU.ActiveCfg = Release|Any CPU
4149
{FF7C7587-BBCA-4574-95AE-101A6FF63B8F}.Release|Any CPU.Build.0 = Release|Any CPU
50+
{74F4C074-93DD-4F7D-91CA-0F8DDC2BC6A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
51+
{74F4C074-93DD-4F7D-91CA-0F8DDC2BC6A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
52+
{74F4C074-93DD-4F7D-91CA-0F8DDC2BC6A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
53+
{74F4C074-93DD-4F7D-91CA-0F8DDC2BC6A1}.Release|Any CPU.Build.0 = Release|Any CPU
54+
{C5A8A2C1-588D-4A1A-BB1D-B33B6DD89797}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
55+
{C5A8A2C1-588D-4A1A-BB1D-B33B6DD89797}.Debug|Any CPU.Build.0 = Debug|Any CPU
56+
{C5A8A2C1-588D-4A1A-BB1D-B33B6DD89797}.Release|Any CPU.ActiveCfg = Release|Any CPU
57+
{C5A8A2C1-588D-4A1A-BB1D-B33B6DD89797}.Release|Any CPU.Build.0 = Release|Any CPU
58+
{71802736-F640-4733-9671-02D267EDD76A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
59+
{71802736-F640-4733-9671-02D267EDD76A}.Debug|Any CPU.Build.0 = Debug|Any CPU
60+
{71802736-F640-4733-9671-02D267EDD76A}.Release|Any CPU.ActiveCfg = Release|Any CPU
61+
{71802736-F640-4733-9671-02D267EDD76A}.Release|Any CPU.Build.0 = Release|Any CPU
62+
{8C131A0A-BC1A-4CF3-8B77-8813FBFE5639}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
63+
{8C131A0A-BC1A-4CF3-8B77-8813FBFE5639}.Debug|Any CPU.Build.0 = Debug|Any CPU
64+
{8C131A0A-BC1A-4CF3-8B77-8813FBFE5639}.Release|Any CPU.ActiveCfg = Release|Any CPU
65+
{8C131A0A-BC1A-4CF3-8B77-8813FBFE5639}.Release|Any CPU.Build.0 = Release|Any CPU
4266
EndGlobalSection
4367
GlobalSection(SolutionProperties) = preSolution
4468
HideSolutionNode = FALSE
@@ -48,5 +72,9 @@ Global
4872
{10B3C418-184A-4A68-8C48-34ED1A02757C} = {459E1593-2C11-42CB-AD17-F7597E69E5D2}
4973
{1C24C0CE-84B6-4D6C-B484-32741D704FD8} = {2E14F082-1A04-4E7C-9162-1675119F9A9E}
5074
{FF7C7587-BBCA-4574-95AE-101A6FF63B8F} = {459E1593-2C11-42CB-AD17-F7597E69E5D2}
75+
{74F4C074-93DD-4F7D-91CA-0F8DDC2BC6A1} = {5A04042D-438D-407B-B239-0CAD6A2BD8C2}
76+
{C5A8A2C1-588D-4A1A-BB1D-B33B6DD89797} = {2E14F082-1A04-4E7C-9162-1675119F9A9E}
77+
{71802736-F640-4733-9671-02D267EDD76A} = {5A04042D-438D-407B-B239-0CAD6A2BD8C2}
78+
{8C131A0A-BC1A-4CF3-8B77-8813FBFE5639} = {2E14F082-1A04-4E7C-9162-1675119F9A9E}
5179
EndGlobalSection
5280
EndGlobal
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">12.0</VisualStudioVersion>
5+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
6+
</PropertyGroup>
7+
<PropertyGroup>
8+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
9+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
10+
</PropertyGroup>
11+
12+
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.Props" Condition="'$(VSToolsPath)' != ''" />
13+
<PropertyGroup Label="Globals">
14+
<ProjectGuid>71802736-f640-4733-9671-02d267edd76a</ProjectGuid>
15+
<OutputType>Library</OutputType>
16+
<RootNamespace>Microsoft.AspNet.Cache.Session</RootNamespace>
17+
</PropertyGroup>
18+
19+
<PropertyGroup Condition="$(OutputType) == 'Console'">
20+
<DebuggerFlavor>ConsoleDebugger</DebuggerFlavor>
21+
</PropertyGroup>
22+
<PropertyGroup Condition="$(OutputType) == 'Web'">
23+
<DebuggerFlavor>WebDebugger</DebuggerFlavor>
24+
</PropertyGroup>
25+
26+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'" Label="Configuration">
27+
</PropertyGroup>
28+
<PropertyGroup>
29+
<SchemaVersion>2.0</SchemaVersion>
30+
</PropertyGroup>
31+
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.targets" Condition="'$(VSToolsPath)' != ''" />
32+
</Project>
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"version": "1.0.0-*",
3+
"dependencies": {
4+
"Microsoft.AspNet.Http": "1.0.0-*",
5+
"Microsoft.Framework.Cache.Distributed": "1.0.0-*",
6+
"Microsoft.Framework.Runtime.Interfaces": "1.0.0-*"
7+
},
8+
"frameworks": {
9+
"net45": {},
10+
"aspnetcore50": {
11+
"dependencies": {
12+
"System.Collections": "4.0.10.0",
13+
"System.ComponentModel": "4.0.0.0",
14+
"System.Diagnostics.Debug": "4.0.10.0",
15+
"System.Diagnostics.Tools": "4.0.0.0",
16+
"System.Globalization": "4.0.10.0",
17+
"System.Globalization.Extensions": "4.0.0.0",
18+
"System.IO": "4.0.10.0",
19+
"System.Linq": "4.0.0.0",
20+
"System.Runtime": "4.0.20.0",
21+
"System.Runtime.Extensions": "4.0.10.0",
22+
"System.Runtime.InteropServices": "4.0.20.0",
23+
"System.Security.Principal" : "4.0.0.0",
24+
"System.Threading": "4.0.0.0",
25+
"System.Threading.Tasks": "4.0.10.0",
26+
"System.Threading.ThreadPool": "4.0.10.0",
27+
"System.Threading.Timer": "4.0.0.0"
28+
}
29+
}
30+
}
31+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">12.0</VisualStudioVersion>
5+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
6+
</PropertyGroup>
7+
<PropertyGroup>
8+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
9+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
10+
</PropertyGroup>
11+
12+
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.Props" Condition="'$(VSToolsPath)' != ''" />
13+
<PropertyGroup Label="Globals">
14+
<ProjectGuid>74f4c074-93dd-4f7d-91ca-0f8ddc2bc6a1</ProjectGuid>
15+
<OutputType>Library</OutputType>
16+
<RootNamespace>Microsoft.Framework.Cache.Distributed</RootNamespace>
17+
</PropertyGroup>
18+
19+
<PropertyGroup Condition="$(OutputType) == 'Console'">
20+
<DebuggerFlavor>ConsoleDebugger</DebuggerFlavor>
21+
</PropertyGroup>
22+
<PropertyGroup Condition="$(OutputType) == 'Web'">
23+
<DebuggerFlavor>WebDebugger</DebuggerFlavor>
24+
</PropertyGroup>
25+
26+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'" Label="Configuration">
27+
</PropertyGroup>
28+
<PropertyGroup>
29+
<SchemaVersion>2.0</SchemaVersion>
30+
</PropertyGroup>
31+
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.targets" Condition="'$(VSToolsPath)' != ''" />
32+
</Project>
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"version": "1.0.0-*",
3+
"dependencies": {
4+
"Microsoft.Framework.Runtime.Interfaces": "1.0.0-*"
5+
},
6+
"frameworks": {
7+
"net45": {},
8+
"aspnetcore50": {
9+
"dependencies": {
10+
"System.Collections": "4.0.10.0",
11+
"System.ComponentModel": "4.0.0.0",
12+
"System.Diagnostics.Debug": "4.0.10.0",
13+
"System.Diagnostics.Tools": "4.0.0.0",
14+
"System.Globalization": "4.0.10.0",
15+
"System.Globalization.Extensions": "4.0.0.0",
16+
"System.IO": "4.0.10.0",
17+
"System.Linq": "4.0.0.0",
18+
"System.Runtime": "4.0.20.0",
19+
"System.Runtime.Extensions": "4.0.10.0",
20+
"System.Runtime.InteropServices": "4.0.20.0",
21+
"System.Security.Principal" : "4.0.0.0",
22+
"System.Threading": "4.0.0.0",
23+
"System.Threading.Tasks": "4.0.10.0",
24+
"System.Threading.ThreadPool": "4.0.10.0",
25+
"System.Threading.Timer": "4.0.0.0"
26+
}
27+
}
28+
}
29+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">12.0</VisualStudioVersion>
5+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
6+
</PropertyGroup>
7+
<PropertyGroup>
8+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
9+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
10+
</PropertyGroup>
11+
12+
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.Props" Condition="'$(VSToolsPath)' != ''" />
13+
<PropertyGroup Label="Globals">
14+
<ProjectGuid>8c131a0a-bc1a-4cf3-8b77-8813fbfe5639</ProjectGuid>
15+
<OutputType>Library</OutputType>
16+
<RootNamespace>Microsoft.AspNet.Cache.Session</RootNamespace>
17+
</PropertyGroup>
18+
19+
<PropertyGroup Condition="$(OutputType) == 'Console'">
20+
<DebuggerFlavor>ConsoleDebugger</DebuggerFlavor>
21+
</PropertyGroup>
22+
<PropertyGroup Condition="$(OutputType) == 'Web'">
23+
<DebuggerFlavor>WebDebugger</DebuggerFlavor>
24+
</PropertyGroup>
25+
26+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'" Label="Configuration">
27+
</PropertyGroup>
28+
<PropertyGroup>
29+
<SchemaVersion>2.0</SchemaVersion>
30+
</PropertyGroup>
31+
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.targets" Condition="'$(VSToolsPath)' != ''" />
32+
</Project>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"dependencies": {
3+
"Microsoft.AspNet.Cache.Session": "1.0.0-*",
4+
"Xunit.KRunner": "1.0.0-*"
5+
},
6+
"commands": {
7+
"test": "Xunit.KRunner"
8+
},
9+
"frameworks": {
10+
"net45": {
11+
"dependencies": {
12+
"System.Runtime": "4.0.20.0"
13+
}
14+
}
15+
}
16+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">12.0</VisualStudioVersion>
5+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
6+
</PropertyGroup>
7+
<PropertyGroup>
8+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
9+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
10+
</PropertyGroup>
11+
12+
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.Props" Condition="'$(VSToolsPath)' != ''" />
13+
<PropertyGroup Label="Globals">
14+
<ProjectGuid>c5a8a2c1-588d-4a1a-bb1d-b33b6dd89797</ProjectGuid>
15+
<OutputType>Library</OutputType>
16+
<RootNamespace>Microsoft.Framework.Cache.Distributed</RootNamespace>
17+
</PropertyGroup>
18+
19+
<PropertyGroup Condition="$(OutputType) == 'Console'">
20+
<DebuggerFlavor>ConsoleDebugger</DebuggerFlavor>
21+
</PropertyGroup>
22+
<PropertyGroup Condition="$(OutputType) == 'Web'">
23+
<DebuggerFlavor>WebDebugger</DebuggerFlavor>
24+
</PropertyGroup>
25+
26+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'" Label="Configuration">
27+
</PropertyGroup>
28+
<PropertyGroup>
29+
<SchemaVersion>2.0</SchemaVersion>
30+
</PropertyGroup>
31+
<Import Project="$(VSToolsPath)\AspNet\Microsoft.Web.AspNet.targets" Condition="'$(VSToolsPath)' != ''" />
32+
</Project>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"dependencies": {
3+
"Microsoft.Framework.Cache.Distributed": "1.0.0-*",
4+
"Xunit.KRunner": "1.0.0-*"
5+
},
6+
"commands": {
7+
"test": "Xunit.KRunner"
8+
},
9+
"frameworks": {
10+
"net45": {
11+
"dependencies": {
12+
"System.Runtime": "4.0.20.0"
13+
}
14+
}
15+
}
16+
}

test/Microsoft.Framework.Cache.Memory.Tests/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"frameworks": {
1010
"net45": {
1111
"dependencies": {
12-
"System.Runtime": ""
12+
"System.Runtime": "4.0.20.0"
1313
}
1414
}
1515
}

0 commit comments

Comments
 (0)