Skip to content
This repository has been archived by the owner on Oct 26, 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 59893bc commit c1b6dcb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
7 changes: 4 additions & 3 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>
14 changes: 7 additions & 7 deletions src/Microsoft.Extensions.DiagnosticAdapter/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": "Microsoft extension adapter feature to extend DiagnosticListener. Contains extension methods that extend System.Diagnostics.DiagnosticListener, and enables duck-typing based event handling by using dynamically generated proxy types.",
"packOptions": {
"repository": {
Expand All @@ -13,9 +13,9 @@
]
},
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0-*",
"NETStandard.Library": "1.6.1-*",
"System.Diagnostics.DiagnosticSource": "4.3.0-*"
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
"NETStandard.Library": "1.6.1",
"System.Diagnostics.DiagnosticSource": "4.3.0"
},
"buildOptions": {
"define": [
Expand All @@ -31,9 +31,9 @@
"frameworks": {
"netstandard1.1": {
"dependencies": {
"System.ComponentModel": "4.3.0-*",
"System.Reflection.Emit": "4.3.0-*",
"System.Reflection.Emit.Lightweight": "4.3.0-*"
"System.ComponentModel": "4.3.0",
"System.Reflection.Emit": "4.3.0",
"System.Reflection.Emit.Lightweight": "4.3.0"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions test/Microsoft.Extensions.DiagnosticAdapter.Test/project.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"dependencies": {
"dotnet-test-xunit": "2.2.0-*",
"Microsoft.AspNetCore.Testing": "1.1.0-*",
"Microsoft.Extensions.DiagnosticAdapter": "1.1.0-*",
"Microsoft.AspNetCore.Testing": "1.1.0-rtm-22752",
"Microsoft.Extensions.DiagnosticAdapter": "1.1.0",
"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 c1b6dcb

Please sign in to comment.