Skip to content

Commit eaa063f

Browse files
committed
build package
1 parent c9be46a commit eaa063f

File tree

9 files changed

+134
-6
lines changed

9 files changed

+134
-6
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,6 @@ src/MongoDB.Bson/project.lock.json
6464
src/MongoDB.Driver.Core/project.lock.json
6565
src/MongoDB.Driver/project.lock.json
6666
samples/MongoDB.Tests.ConsoleApp/project.lock.json
67+
src/RaisingStudio.MongoDB.Bson
68+
src/RaisingStudio.MongoDB.Driver.Core
69+
src/RaisingStudio.MongoDB.Driver

RaisingStudio-CSharpDriver.sln

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25402.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{B4E459B4-5B8C-4933-BECC-AEB36CEC84F6}"
7+
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{476D8FD2-8395-4967-92E2-C355C7FF3FE9}"
9+
ProjectSection(SolutionItems) = preProject
10+
global.json = global.json
11+
EndProjectSection
12+
EndProject
13+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{EF7A690C-F868-4E61-8ED7-3D05AC39D209}"
14+
EndProject
15+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "MongoDB.Tests.ConsoleApp", "samples\MongoDB.Tests.ConsoleApp\MongoDB.Tests.ConsoleApp.xproj", "{CCD9B0EE-086A-46F4-8307-9E46E50C57C2}"
16+
EndProject
17+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "RaisingStudio.MongoDB.Bson", "src\RaisingStudio.MongoDB.Bson\RaisingStudio.MongoDB.Bson.xproj", "{E6B739E6-DDD8-4BA5-8595-FD59A0783153}"
18+
EndProject
19+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "RaisingStudio.MongoDB.Driver.Core", "src\RaisingStudio.MongoDB.Driver.Core\RaisingStudio.MongoDB.Driver.Core.xproj", "{B86DE81A-6CAB-458D-852C-358114C146DB}"
20+
EndProject
21+
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "RaisingStudio.MongoDB.Driver", "src\RaisingStudio.MongoDB.Driver\RaisingStudio.MongoDB.Driver.xproj", "{22C3CF35-4EEE-40DE-A313-33E2CFAC1F08}"
22+
EndProject
23+
Global
24+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
25+
Debug|Any CPU = Debug|Any CPU
26+
Release|Any CPU = Release|Any CPU
27+
EndGlobalSection
28+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
29+
{CCD9B0EE-086A-46F4-8307-9E46E50C57C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
30+
{CCD9B0EE-086A-46F4-8307-9E46E50C57C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
31+
{CCD9B0EE-086A-46F4-8307-9E46E50C57C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
32+
{CCD9B0EE-086A-46F4-8307-9E46E50C57C2}.Release|Any CPU.Build.0 = Release|Any CPU
33+
{E6B739E6-DDD8-4BA5-8595-FD59A0783153}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
34+
{E6B739E6-DDD8-4BA5-8595-FD59A0783153}.Debug|Any CPU.Build.0 = Debug|Any CPU
35+
{E6B739E6-DDD8-4BA5-8595-FD59A0783153}.Release|Any CPU.ActiveCfg = Release|Any CPU
36+
{E6B739E6-DDD8-4BA5-8595-FD59A0783153}.Release|Any CPU.Build.0 = Release|Any CPU
37+
{B86DE81A-6CAB-458D-852C-358114C146DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
38+
{B86DE81A-6CAB-458D-852C-358114C146DB}.Debug|Any CPU.Build.0 = Debug|Any CPU
39+
{B86DE81A-6CAB-458D-852C-358114C146DB}.Release|Any CPU.ActiveCfg = Release|Any CPU
40+
{B86DE81A-6CAB-458D-852C-358114C146DB}.Release|Any CPU.Build.0 = Release|Any CPU
41+
{22C3CF35-4EEE-40DE-A313-33E2CFAC1F08}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
42+
{22C3CF35-4EEE-40DE-A313-33E2CFAC1F08}.Debug|Any CPU.Build.0 = Debug|Any CPU
43+
{22C3CF35-4EEE-40DE-A313-33E2CFAC1F08}.Release|Any CPU.ActiveCfg = Release|Any CPU
44+
{22C3CF35-4EEE-40DE-A313-33E2CFAC1F08}.Release|Any CPU.Build.0 = Release|Any CPU
45+
EndGlobalSection
46+
GlobalSection(SolutionProperties) = preSolution
47+
HideSolutionNode = FALSE
48+
EndGlobalSection
49+
GlobalSection(NestedProjects) = preSolution
50+
{CCD9B0EE-086A-46F4-8307-9E46E50C57C2} = {EF7A690C-F868-4E61-8ED7-3D05AC39D209}
51+
{E6B739E6-DDD8-4BA5-8595-FD59A0783153} = {B4E459B4-5B8C-4933-BECC-AEB36CEC84F6}
52+
{B86DE81A-6CAB-458D-852C-358114C146DB} = {B4E459B4-5B8C-4933-BECC-AEB36CEC84F6}
53+
{22C3CF35-4EEE-40DE-A313-33E2CFAC1F08} = {B4E459B4-5B8C-4933-BECC-AEB36CEC84F6}
54+
EndGlobalSection
55+
EndGlobal

samples/MongoDB.Tests.ConsoleApp/project.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"version": "1.0.0-*",
3+
"authors": [ "[email protected]" ],
34
"buildOptions": {
45
"emitEntryPoint": true
56
},
@@ -9,8 +10,8 @@
910
"type": "platform",
1011
"version": "1.0.0-rc2-3002702"
1112
},
12-
"MongoDB.Bson": "2.2.4-*",
13-
"MongoDB.Driver": "2.2.4-*"
13+
"RaisingStudio.MongoDB.Bson": "2.2.4-*",
14+
"RaisingStudio.MongoDB.Driver": "2.2.4-*"
1415
},
1516

1617
"frameworks": {
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
8+
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
9+
<PropertyGroup Label="Globals">
10+
<ProjectGuid>e6b739e6-ddd8-4ba5-8595-fd59a0783153</ProjectGuid>
11+
<RootNamespace>MongoDB.Bson</RootNamespace>
12+
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
13+
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
14+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
15+
</PropertyGroup>
16+
17+
<PropertyGroup>
18+
<SchemaVersion>2.0</SchemaVersion>
19+
</PropertyGroup>
20+
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
21+
</Project>

src/MongoDB.Bson/project.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
{
1+
{
22
"version": "2.2.4-*",
3+
"authors": [ "[email protected]" ],
4+
"description": "MongoDB supported BSON library. See http://www.mongodb.org/display/DOCS/CSharp+Language+Center for more details.",
35
"dependencies": {
46
"NETStandard.Library": "1.5.0-rc2-24027",
57
"System.Dynamic.Runtime": "4.0.11-rc2-24027",
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
8+
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
9+
<PropertyGroup Label="Globals">
10+
<ProjectGuid>b86de81a-6cab-458d-852c-358114c146db</ProjectGuid>
11+
<RootNamespace>MongoDB.Driver.Core</RootNamespace>
12+
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
13+
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
14+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
15+
</PropertyGroup>
16+
17+
<PropertyGroup>
18+
<SchemaVersion>2.0</SchemaVersion>
19+
</PropertyGroup>
20+
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
21+
</Project>

src/MongoDB.Driver.Core/project.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{
22
"version": "2.2.4-*",
3+
"authors": [ "[email protected]" ],
4+
"description": "MongoDB supported Driver Core library. See http://www.mongodb.org/display/DOCS/CSharp+Language+Center for more details.",
35
"dependencies": {
4-
"MongoDB.Bson": "2.2.4-*",
6+
"RaisingStudio.MongoDB.Bson": "2.2.4-*",
57
"NETStandard.Library": "1.5.0-rc2-24027",
68
"System.Collections.Specialized": "4.0.1-rc2-24027",
79
"System.Diagnostics.TraceSource": "4.0.0-rc2-24027",
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
8+
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
9+
<PropertyGroup Label="Globals">
10+
<ProjectGuid>22c3cf35-4eee-40de-a313-33e2cfac1f08</ProjectGuid>
11+
<RootNamespace>MongoDB.Driver</RootNamespace>
12+
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
13+
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
14+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
15+
</PropertyGroup>
16+
17+
<PropertyGroup>
18+
<SchemaVersion>2.0</SchemaVersion>
19+
</PropertyGroup>
20+
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
21+
</Project>

src/MongoDB.Driver/project.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
{
22
"version": "2.2.4-*",
3+
"authors": [ "[email protected]" ],
4+
"description": "MongoDB supported driver for MongoDB. See http://www.mongodb.org/display/DOCS/CSharp+Language+Center for more details.",
35
"dependencies": {
4-
"MongoDB.Bson": "2.2.4-*",
5-
"MongoDB.Driver.Core": "2.2.4-*",
6+
"RaisingStudio.MongoDB.Bson": "2.2.4-*",
7+
"RaisingStudio.MongoDB.Driver.Core": "2.2.4-*",
68
"NETStandard.Library": "1.5.0-rc2-24027",
79
"System.Collections.Specialized": "4.0.1-rc2-24027",
810
"System.Diagnostics.TraceSource": "4.0.0-rc2-24027",

0 commit comments

Comments
 (0)