Skip to content

Commit ca7481a

Browse files
committed
1.1
1 parent 6e87e65 commit ca7481a

File tree

12 files changed

+51
-69
lines changed

12 files changed

+51
-69
lines changed

GeekLearning.Storage.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
2121
ProjectSection(SolutionItems) = preProject
2222
.gitattributes = .gitattributes
2323
.gitignore = .gitignore
24+
global.json = global.json
2425
LICENSE.md = LICENSE.md
2526
README.md = README.md
2627
EndProjectSection

global.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2+
"sdk" : { "version": "1.0.0-preview2-003121"},
23
"projects": [ "src", "tests", "samples" ]
34
}

samples/GeekLearning.Storage.BasicSample/project.json

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,33 @@
11
{
22
"dependencies": {
33
"Microsoft.NETCore.App": {
4-
"version": "1.0.0-rc2-3002702",
4+
"version": "1.0.0",
55
"type": "platform"
66
},
7-
"Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final",
8-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
9-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
10-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final",
11-
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-final",
12-
"Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final",
13-
"Microsoft.Extensions.Logging": "1.0.0-rc2-final",
14-
"Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final",
15-
"Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final",
16-
"Microsoft.Extensions.Options": "1.0.0-rc2-final",
17-
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0-rc2-final",
7+
"Microsoft.AspNetCore.Mvc": "1.0.0",
8+
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
9+
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
10+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
11+
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
12+
"Microsoft.Extensions.Configuration.Json": "1.0.0",
13+
"Microsoft.Extensions.Logging": "1.0.0",
14+
"Microsoft.Extensions.Logging.Console": "1.0.0",
15+
"Microsoft.Extensions.Logging.Debug": "1.0.0",
16+
"Microsoft.Extensions.Options": "1.0.0",
17+
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
1818
"GeekLearning.Storage": "*",
1919
"GeekLearning.Storage.Azure": "*",
2020
"GeekLearning.Storage.FileSystem": "*"
2121
},
2222

2323
"tools": {
24-
"Microsoft.AspNetCore.Server.IISIntegration.Tools": {
25-
"version": "1.0.0-preview1-final",
26-
"imports": "portable-net45+win8+dnxcore50"
27-
}
24+
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
2825
},
2926

3027
"frameworks": {
3128
"netcoreapp1.0": {
3229
"imports": [
3330
"dotnet5.6",
34-
"dnxcore50",
3531
"portable-net45+win8"
3632
]
3733
}
@@ -43,7 +39,9 @@
4339
},
4440

4541
"runtimeOptions": {
46-
"gcServer": true
42+
"configProperties": {
43+
"System.GC.Server": true
44+
}
4745
},
4846

4947
"publishOptions": {

src/GeekLearning.Storage.Azure/project.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,19 @@
99
},
1010

1111
"dependencies": {
12-
"NETStandard.Library": "1.5.0-rc2-24027",
13-
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final",
14-
"Microsoft.Extensions.Options": "1.0.0-rc2-final",
15-
"WindowsAzure.Storage": "7.0.1-preview",
12+
"NETStandard.Library": "1.6.0",
13+
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
14+
"Microsoft.Extensions.Options": "1.0.0",
15+
"WindowsAzure.Storage": "7.1.3-preview",
1616
"GeekLearning.Storage": "*",
17-
"Microsoft.Extensions.FileSystemGlobbing": "1.0.0-rc2-final"
17+
"Microsoft.Extensions.FileSystemGlobbing": "1.0.0"
1818
},
1919

2020
"frameworks": {
2121
"net451": { },
2222
"netstandard1.5": {
2323
"imports": [
2424
"dotnet5.6",
25-
"dnxcore50",
2625
"portable-net45+win8"
2726
]
2827
}

src/GeekLearning.Storage.FileSystem.Server/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"version": "1.0.0-*",
33

44
"dependencies": {
5-
"GeekLearning.Storage.FileSystem": "1.0.0-*",
5+
"GeekLearning.Storage.FileSystem": "*",
66
"NETStandard.Library": "1.6.0"
77
},
88

src/GeekLearning.Storage.FileSystem/project.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,18 @@
99
},
1010

1111
"dependencies": {
12-
"NETStandard.Library": "1.5.0-rc2-24027",
13-
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final",
14-
"Microsoft.Extensions.Options": "1.0.0-rc2-final",
12+
"NETStandard.Library": "1.6.0",
13+
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
14+
"Microsoft.Extensions.Options": "1.0.0",
1515
"GeekLearning.Storage": "*",
16-
"Microsoft.Extensions.FileSystemGlobbing": "1.0.0-rc2-final"
16+
"Microsoft.Extensions.FileSystemGlobbing": "1.0.0"
1717
},
1818

1919
"frameworks": {
2020
"net451": { },
2121
"netstandard1.5": {
2222
"imports": [
2323
"dotnet5.6",
24-
"dnxcore50",
2524
"portable-net45+win8"
2625
]
2726
}

src/GeekLearning.Storage/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
},
1010

1111
"dependencies": {
12-
"NETStandard.Library": "1.5.0-rc2-24027",
13-
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final",
14-
"Microsoft.Extensions.Options": "1.0.0-rc2-final"
12+
"NETStandard.Library": "1.6.0",
13+
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
14+
"Microsoft.Extensions.Options": "1.0.0"
1515
},
1616

1717
"frameworks": {

tests/GeekLearning.Integration.Test/IntegrationCollection.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
namespace GeekLearning.Integration.Test
88
{
9-
[CollectionDefinition(nameof(Integration))]
10-
public class Integration: ICollectionFixture<StoresFixture>
9+
[CollectionDefinition(nameof(IntegrationCollection))]
10+
public class IntegrationCollection: ICollectionFixture<StoresFixture>
1111
{
1212

1313
}

tests/GeekLearning.Integration.Test/ListTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
using GeekLearning.Storage;
99
using Microsoft.Extensions.DependencyInjection;
1010

11-
[Collection(nameof(Integration)), Trait("Operation", "List"), Trait("Kind", "Integration")]
11+
[Collection(nameof(IntegrationCollection))]
12+
[Trait("Operation", "List"), Trait("Kind", "Integration")]
1213
public class ListTests
1314
{
1415
StoresFixture storeFixture;

tests/GeekLearning.Integration.Test/Program.cs

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)