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

Commit c1b6dcb

Browse files
committed
Pinning versions for 1.1.0 release
1 parent 59893bc commit c1b6dcb

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

NuGet.config

Lines changed: 4 additions & 3 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>
78
</configuration>

src/Microsoft.Extensions.DiagnosticAdapter/project.json

Lines changed: 7 additions & 7 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": "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.",
44
"packOptions": {
55
"repository": {
@@ -13,9 +13,9 @@
1313
]
1414
},
1515
"dependencies": {
16-
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0-*",
17-
"NETStandard.Library": "1.6.1-*",
18-
"System.Diagnostics.DiagnosticSource": "4.3.0-*"
16+
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
17+
"NETStandard.Library": "1.6.1",
18+
"System.Diagnostics.DiagnosticSource": "4.3.0"
1919
},
2020
"buildOptions": {
2121
"define": [
@@ -31,9 +31,9 @@
3131
"frameworks": {
3232
"netstandard1.1": {
3333
"dependencies": {
34-
"System.ComponentModel": "4.3.0-*",
35-
"System.Reflection.Emit": "4.3.0-*",
36-
"System.Reflection.Emit.Lightweight": "4.3.0-*"
34+
"System.ComponentModel": "4.3.0",
35+
"System.Reflection.Emit": "4.3.0",
36+
"System.Reflection.Emit.Lightweight": "4.3.0"
3737
}
3838
}
3939
}

test/Microsoft.Extensions.DiagnosticAdapter.Test/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"dependencies": {
33
"dotnet-test-xunit": "2.2.0-*",
4-
"Microsoft.AspNetCore.Testing": "1.1.0-*",
5-
"Microsoft.Extensions.DiagnosticAdapter": "1.1.0-*",
4+
"Microsoft.AspNetCore.Testing": "1.1.0-rtm-22752",
5+
"Microsoft.Extensions.DiagnosticAdapter": "1.1.0",
66
"xunit": "2.2.0-*"
77
},
88
"testRunner": "xunit",
99
"frameworks": {
1010
"netcoreapp1.1": {
1111
"dependencies": {
1212
"Microsoft.NETCore.App": {
13-
"version": "1.1.0-*",
13+
"version": "1.1.0",
1414
"type": "platform"
1515
}
1616
}

0 commit comments

Comments
 (0)