Skip to content
This repository has been archived by the owner on Nov 7, 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 249dce2 commit 63eefb3
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 19 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>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-*",
"version": "1.1.0",
"buildOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk",
Expand All @@ -10,11 +10,11 @@
},
"description": "Provides additional configuration specific functionality related to Options.",
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "1.1.0-*",
"Microsoft.Extensions.Configuration.Binder": "1.1.0-*",
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0-*",
"Microsoft.Extensions.Options": "1.1.0-*",
"NETStandard.Library": "1.6.1-*"
"Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
"Microsoft.Extensions.Configuration.Binder": "1.1.0",
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
"Microsoft.Extensions.Options": "1.1.0",
"NETStandard.Library": "1.6.1"
},
"packOptions": {
"repository": {
Expand Down
10 changes: 5 additions & 5 deletions src/Microsoft.Extensions.Options/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1.0-*",
"version": "1.1.0",
"buildOptions": {
"warningsAsErrors": true,
"keyFile": "../../tools/Key.snk",
Expand All @@ -10,9 +10,9 @@
},
"description": "Provides a strongly typed way of specifying and accessing settings using dependency injection.",
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0-*",
"Microsoft.Extensions.Primitives": "1.1.0-*",
"NETStandard.Library": "1.6.1-*"
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
"Microsoft.Extensions.Primitives": "1.1.0",
"NETStandard.Library": "1.6.1"
},
"packOptions": {
"repository": {
Expand All @@ -27,7 +27,7 @@
"frameworks": {
"netstandard1.0": {
"dependencies": {
"System.ComponentModel": "4.3.0-*"
"System.ComponentModel": "4.3.0"
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions test/Microsoft.Extensions.Options.Test/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
},
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.Extensions.DependencyInjection": "1.1.0-*",
"Microsoft.Extensions.Options": "1.1.0-*",
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0-*",
"Microsoft.Extensions.DependencyInjection": "1.1.0",
"Microsoft.Extensions.Options": "1.1.0",
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0",
"xunit": "2.2.0-*"
},
"frameworks": {
"netcoreapp1.1": {
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.1.0-*",
"version": "1.1.0",
"type": "platform"
}
}
Expand Down

0 comments on commit 63eefb3

Please sign in to comment.