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

Commit 6459d0d

Browse files
committed
Pinning versions for 1.1.0 release
1 parent 7922a1a commit 6459d0d

File tree

16 files changed

+67
-66
lines changed

16 files changed

+67
-66
lines changed

NuGet.config

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
33
<packageSources>
4-
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-ci-release/api/v3/index.json" />
5-
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
4+
<clear />
5+
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
6+
<add key="AspNetCore" value="https://dotnet.myget.org/f/aspnetcore-master/api/v3/index.json" />
67
</packageSources>
7-
</configuration>
8+
</configuration>

samples/SampleApp/project.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"emitEntryPoint": true
44
},
55
"dependencies": {
6-
"Microsoft.Extensions.Configuration.FileExtensions": "1.1.0-*",
7-
"Microsoft.Extensions.Configuration.Json": "1.1.0-*",
8-
"Microsoft.Extensions.FileProviders.Physical": "1.1.0-*",
9-
"Microsoft.Extensions.Logging": "1.1.0-*",
10-
"Microsoft.Extensions.Logging.Console": "1.1.0-*",
11-
"Microsoft.Extensions.Logging.Filter": "1.1.0-*",
12-
"Microsoft.Extensions.PlatformAbstractions": "1.1.0-*"
6+
"Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
7+
"Microsoft.Extensions.Configuration.Json": "1.1.0",
8+
"Microsoft.Extensions.FileProviders.Physical": "1.1.0",
9+
"Microsoft.Extensions.Logging": "1.1.0",
10+
"Microsoft.Extensions.Logging.Console": "1.1.0",
11+
"Microsoft.Extensions.Logging.Filter": "1.1.0",
12+
"Microsoft.Extensions.PlatformAbstractions": "1.1.0"
1313
},
1414
"publishOptions": {
1515
"include": [
@@ -19,13 +19,13 @@
1919
"frameworks": {
2020
"net451": {
2121
"dependencies": {
22-
"Microsoft.Extensions.Logging.EventLog": "1.1.0-*"
22+
"Microsoft.Extensions.Logging.EventLog": "1.1.0"
2323
}
2424
},
2525
"netcoreapp1.1": {
2626
"dependencies": {
2727
"Microsoft.NETCore.App": {
28-
"version": "1.1.0-*",
28+
"version": "1.1.0",
2929
"type": "platform"
3030
}
3131
}

src/Microsoft.Extensions.Logging.Abstractions/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0-*",
2+
"version": "1.1.0",
33
"packOptions": {
44
"repository": {
55
"type": "git",
@@ -21,7 +21,7 @@
2121
"frameworks": {
2222
"netstandard1.1": {
2323
"dependencies": {
24-
"NETStandard.Library": "1.6.1-*"
24+
"NETStandard.Library": "1.6.1"
2525
}
2626
}
2727
}

src/Microsoft.Extensions.Logging.AzureAppServices/project.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.0",
33
"description": "Logger implementation to support Azure App Services 'Diagnostics logs' and 'Log stream' features.",
44
"packOptions": {
55
"tags": [
@@ -12,11 +12,11 @@
1212
"xmlDoc": true
1313
},
1414
"dependencies": {
15-
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0-*",
16-
"Microsoft.Extensions.Configuration.Json": "1.1.0-*",
17-
"Microsoft.Extensions.Logging": "1.1.0-*",
18-
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
19-
"NETStandard.Library": "1.6.1-*",
15+
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
16+
"Microsoft.Extensions.Configuration.Json": "1.1.0",
17+
"Microsoft.Extensions.Logging": "1.1.0",
18+
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
19+
"NETStandard.Library": "1.6.1",
2020
"Serilog.Extensions.Logging": "1.0.0",
2121
"Serilog.Sinks.PeriodicBatching": "2.0.0",
2222
"Serilog.Sinks.RollingFile": "3.1.0",
@@ -32,7 +32,7 @@
3232
},
3333
"netstandard1.3": {
3434
"dependencies": {
35-
"System.Threading.Thread": "4.3.0-*"
35+
"System.Threading.Thread": "4.3.0"
3636
},
3737
"imports": [
3838
"portable-net40+sl5+win8+wp8+wpa81",

src/Microsoft.Extensions.Logging.Console/project.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0-*",
2+
"version": "1.1.0",
33
"packOptions": {
44
"repository": {
55
"type": "git",
@@ -19,9 +19,9 @@
1919
"xmlDoc": true
2020
},
2121
"dependencies": {
22-
"Microsoft.Extensions.Configuration.Abstractions": "1.1.0-*",
23-
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
24-
"NETStandard.Library": "1.6.1-*"
22+
"Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
23+
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
24+
"NETStandard.Library": "1.6.1"
2525
},
2626
"frameworks": {
2727
"net451": {

src/Microsoft.Extensions.Logging.Debug/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0-*",
2+
"version": "1.1.0",
33
"description": "Debug output logger provider implementation for Microsoft.Extensions.Logging. This logger logs messages to a debugger monitor by writing messages with System.Diagnostics.Debug.WriteLine().",
44
"packOptions": {
55
"repository": {
@@ -19,8 +19,8 @@
1919
"xmlDoc": true
2020
},
2121
"dependencies": {
22-
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
23-
"NETStandard.Library": "1.6.1-*"
22+
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
23+
"NETStandard.Library": "1.6.1"
2424
},
2525
"frameworks": {
2626
"net451": {

src/Microsoft.Extensions.Logging.EventLog/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0-*",
2+
"version": "1.1.0",
33
"description": "Windows Event Log logger provider implementation for Microsoft.Extensions.Logging.",
44
"packOptions": {
55
"repository": {
@@ -21,8 +21,8 @@
2121
"xmlDoc": true
2222
},
2323
"dependencies": {
24-
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
25-
"NETStandard.Library": "1.6.1-*"
24+
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
25+
"NETStandard.Library": "1.6.1"
2626
},
2727
"frameworks": {
2828
"net451": {

src/Microsoft.Extensions.Logging.EventSource/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0-*",
2+
"version": "1.1.0",
33
"description": "EventSource/EventListener logger provider implementation for Microsoft.Extensions.Logging.",
44
"packOptions": {
55
"tags": [
@@ -18,8 +18,8 @@
1818
"xmlDoc": true
1919
},
2020
"dependencies": {
21-
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
22-
"NETStandard.Library": "1.6.1-*",
21+
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
22+
"NETStandard.Library": "1.6.1",
2323
"Newtonsoft.Json": "9.0.1"
2424
},
2525
"frameworks": {

src/Microsoft.Extensions.Logging.Filter/project.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.1.0-*",
2+
"version": "1.1.0",
33
"packOptions": {
44
"repository": {
55
"type": "git",
@@ -19,9 +19,9 @@
1919
]
2020
},
2121
"dependencies": {
22-
"Microsoft.Extensions.Configuration.Abstractions": "1.1.0-*",
23-
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
24-
"NETStandard.Library": "1.6.1-*"
22+
"Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
23+
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
24+
"NETStandard.Library": "1.6.1"
2525
},
2626
"frameworks": {
2727
"netstandard1.1": {}

src/Microsoft.Extensions.Logging.Testing/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"description": "Helpers for writing tests that use Microsoft.Extensions.Logging. Contains null implementations of the abstractions that do nothing, as well as test implementations that are observable.",
3-
"version": "1.1.0-*",
3+
"version": "1.1.0-rtm-22752",
44
"buildOptions": {
55
"warningsAsErrors": true,
66
"keyFile": "../../tools/Key.snk",
@@ -20,8 +20,8 @@
2020
]
2121
},
2222
"dependencies": {
23-
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
24-
"NETStandard.Library": "1.6.1-*",
23+
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
24+
"NETStandard.Library": "1.6.1",
2525
"xunit.assert": "2.2.0-*"
2626
},
2727
"frameworks": {

0 commit comments

Comments
 (0)