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

Commit

Permalink
Pinning versions for 1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavkm committed Nov 18, 2016
1 parent 7922a1a commit 6459d0d
Show file tree
Hide file tree
Showing 16 changed files with 67 additions and 66 deletions.
9 changes: 5 additions & 4 deletions NuGet.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-ci-release/api/v3/index.json" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
<clear />
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
<add key="AspNetCore" value="https://dotnet.myget.org/f/aspnetcore-master/api/v3/index.json" />
</packageSources>
</configuration>
</configuration>
18 changes: 9 additions & 9 deletions samples/SampleApp/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.Extensions.Configuration.FileExtensions": "1.1.0-*",
"Microsoft.Extensions.Configuration.Json": "1.1.0-*",
"Microsoft.Extensions.FileProviders.Physical": "1.1.0-*",
"Microsoft.Extensions.Logging": "1.1.0-*",
"Microsoft.Extensions.Logging.Console": "1.1.0-*",
"Microsoft.Extensions.Logging.Filter": "1.1.0-*",
"Microsoft.Extensions.PlatformAbstractions": "1.1.0-*"
"Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
"Microsoft.Extensions.Configuration.Json": "1.1.0",
"Microsoft.Extensions.FileProviders.Physical": "1.1.0",
"Microsoft.Extensions.Logging": "1.1.0",
"Microsoft.Extensions.Logging.Console": "1.1.0",
"Microsoft.Extensions.Logging.Filter": "1.1.0",
"Microsoft.Extensions.PlatformAbstractions": "1.1.0"
},
"publishOptions": {
"include": [
Expand All @@ -19,13 +19,13 @@
"frameworks": {
"net451": {
"dependencies": {
"Microsoft.Extensions.Logging.EventLog": "1.1.0-*"
"Microsoft.Extensions.Logging.EventLog": "1.1.0"
}
},
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0-*",
"version": "1.1.0",
"type": "platform"
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.Extensions.Logging.Abstractions/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-*",
"version": "1.1.0",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -21,7 +21,7 @@
"frameworks": {
"netstandard1.1": {
"dependencies": {
"NETStandard.Library": "1.6.1-*"
"NETStandard.Library": "1.6.1"
}
}
}
Expand Down
14 changes: 7 additions & 7 deletions src/Microsoft.Extensions.Logging.AzureAppServices/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.0",
"description": "Logger implementation to support Azure App Services 'Diagnostics logs' and 'Log stream' features.",
"packOptions": {
"tags": [
Expand All @@ -12,11 +12,11 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0-*",
"Microsoft.Extensions.Configuration.Json": "1.1.0-*",
"Microsoft.Extensions.Logging": "1.1.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
"NETStandard.Library": "1.6.1-*",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
"Microsoft.Extensions.Configuration.Json": "1.1.0",
"Microsoft.Extensions.Logging": "1.1.0",
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
"NETStandard.Library": "1.6.1",
"Serilog.Extensions.Logging": "1.0.0",
"Serilog.Sinks.PeriodicBatching": "2.0.0",
"Serilog.Sinks.RollingFile": "3.1.0",
Expand All @@ -32,7 +32,7 @@
},
"netstandard1.3": {
"dependencies": {
"System.Threading.Thread": "4.3.0-*"
"System.Threading.Thread": "4.3.0"
},
"imports": [
"portable-net40+sl5+win8+wp8+wpa81",
Expand Down
8 changes: 4 additions & 4 deletions src/Microsoft.Extensions.Logging.Console/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-*",
"version": "1.1.0",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -19,9 +19,9 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "1.1.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
"NETStandard.Library": "1.6.1-*"
"Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"net451": {
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.Extensions.Logging.Debug/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-*",
"version": "1.1.0",
"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().",
"packOptions": {
"repository": {
Expand All @@ -19,8 +19,8 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
"NETStandard.Library": "1.6.1-*"
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"net451": {
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.Extensions.Logging.EventLog/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-*",
"version": "1.1.0",
"description": "Windows Event Log logger provider implementation for Microsoft.Extensions.Logging.",
"packOptions": {
"repository": {
Expand All @@ -21,8 +21,8 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
"NETStandard.Library": "1.6.1-*"
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"net451": {
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.Extensions.Logging.EventSource/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-*",
"version": "1.1.0",
"description": "EventSource/EventListener logger provider implementation for Microsoft.Extensions.Logging.",
"packOptions": {
"tags": [
Expand All @@ -18,8 +18,8 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
"NETStandard.Library": "1.6.1-*",
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
"NETStandard.Library": "1.6.1",
"Newtonsoft.Json": "9.0.1"
},
"frameworks": {
Expand Down
8 changes: 4 additions & 4 deletions src/Microsoft.Extensions.Logging.Filter/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-*",
"version": "1.1.0",
"packOptions": {
"repository": {
"type": "git",
Expand All @@ -19,9 +19,9 @@
]
},
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "1.1.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
"NETStandard.Library": "1.6.1-*"
"Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"netstandard1.1": {}
Expand Down
6 changes: 3 additions & 3 deletions src/Microsoft.Extensions.Logging.Testing/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"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.",
"version": "1.1.0-*",
"version": "1.1.0-rtm-22752",
"buildOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk",
Expand All @@ -20,8 +20,8 @@
]
},
"dependencies": {
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
"NETStandard.Library": "1.6.1-*",
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
"NETStandard.Library": "1.6.1",
"xunit.assert": "2.2.0-*"
},
"frameworks": {
Expand Down
8 changes: 4 additions & 4 deletions src/Microsoft.Extensions.Logging.TraceSource/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-*",
"version": "1.1.0",
"description": "TraceSource logger provider implementation for Microsoft.Extensions.Logging. This logger logs messages to a trace listener by writing messages with System.Diagnostics.TraceSource.TraceEvent().",
"packOptions": {
"repository": {
Expand All @@ -20,8 +20,8 @@
"xmlDoc": true
},
"dependencies": {
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
"NETStandard.Library": "1.6.1-*"
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
"NETStandard.Library": "1.6.1"
},
"frameworks": {
"net451": {
Expand All @@ -33,7 +33,7 @@
},
"netstandard1.3": {
"dependencies": {
"System.Diagnostics.TraceSource": "4.3.0-*"
"System.Diagnostics.TraceSource": "4.3.0"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions src/Microsoft.Extensions.Logging/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-*",
"version": "1.1.0",
"description": "Logging infrastructure default implementation for Microsoft.Extensions.Logging.",
"packOptions": {
"repository": {
Expand All @@ -11,9 +11,9 @@
]
},
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0-*",
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
"NETStandard.Library": "1.6.1-*"
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
"Microsoft.Extensions.Logging.Abstractions": "1.1.0",
"NETStandard.Library": "1.6.1"
},
"buildOptions": {
"warningsAsErrors": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
},
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.Extensions.Logging.AzureAppServices": "1.0.0-*",
"Microsoft.Extensions.Logging.TraceSource": "1.1.0-*",
"Microsoft.Extensions.Logging.AzureAppServices": "1.0.0",
"Microsoft.Extensions.Logging.TraceSource": "1.1.0",
"Moq": "4.6.36-*",
"xunit": "2.2.0-*"
},
Expand All @@ -14,7 +14,7 @@
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0-*",
"version": "1.1.0",
"type": "platform"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
},
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.Extensions.Logging": "1.1.0-*",
"Microsoft.Extensions.Logging.EventSource": "1.1.0-*",
"Microsoft.Extensions.Logging": "1.1.0",
"Microsoft.Extensions.Logging.EventSource": "1.1.0",
"xunit": "2.2.0-*"
},
"testRunner": "xunit",
Expand All @@ -15,7 +15,7 @@
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.1.0-*"
"version": "1.1.0"
}
}
},
Expand Down
16 changes: 8 additions & 8 deletions test/Microsoft.Extensions.Logging.Test/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
},
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.Extensions.DependencyInjection": "1.1.0-*",
"Microsoft.Extensions.Logging": "1.1.0-*",
"Microsoft.Extensions.Logging.Console": "1.1.0-*",
"Microsoft.Extensions.Logging.Debug": "1.1.0-*",
"Microsoft.Extensions.Logging.Filter": "1.1.0-*",
"Microsoft.Extensions.Logging.TraceSource": "1.1.0-*",
"Microsoft.Extensions.DependencyInjection": "1.1.0",
"Microsoft.Extensions.Logging": "1.1.0",
"Microsoft.Extensions.Logging.Console": "1.1.0",
"Microsoft.Extensions.Logging.Debug": "1.1.0",
"Microsoft.Extensions.Logging.Filter": "1.1.0",
"Microsoft.Extensions.Logging.TraceSource": "1.1.0",
"Moq": "4.6.36-*",
"xunit": "2.2.0-*"
},
Expand All @@ -18,14 +18,14 @@
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0-*",
"version": "1.1.0",
"type": "platform"
}
}
},
"net451": {
"dependencies": {
"Microsoft.Extensions.Logging.EventLog": "1.1.0-*"
"Microsoft.Extensions.Logging.EventLog": "1.1.0"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions test/Microsoft.Extensions.Logging.Testing.Tests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
},
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.Extensions.Logging.Testing": "1.1.0-*",
"Microsoft.Extensions.Logging.Testing": "1.1.0-rtm-22752",
"xunit": "2.2.0-*"
},
"testRunner": "xunit",
"frameworks": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0-*",
"version": "1.1.0",
"type": "platform"
}
}
Expand Down

0 comments on commit 6459d0d

Please sign in to comment.