Skip to content

Commit

Permalink
Updated to .NET Core 1.0 RTM. Bumped to 1.0 Beta1.
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm committed Jul 2, 2016
1 parent 5ed167e commit 0c7341a
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 19 deletions.
2 changes: 1 addition & 1 deletion SharpSnmpLib/Security/AESPrivacyProvider.cs
Expand Up @@ -25,7 +25,7 @@
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
#if net451
#if net451 // .NET Standard 1.3 lacks of CFB mode.
using System;
using System.IO;
using System.Security.Cryptography;
Expand Down
36 changes: 18 additions & 18 deletions SharpSnmpLib/project.json
@@ -1,6 +1,6 @@
{
"title": "#SNMP Library",
"version": "10.0.0-alpha6",
"version": "10.0.0-beta1",
"language": "en-US",
"authors": [ "Malcolm Crowe", "Lex Li", "other contributors" ],
"copyright": "All rights reserved. (c) 2008-2016 Malcolm Crowe, Lex Li, and other contributors.",
Expand All @@ -19,23 +19,23 @@
"define": ["netstandard13"]
},
"dependencies": {
"Microsoft.CSharp": "4.0.1-rc2-*",
"System.Collections": "4.0.11-rc2-*",
"System.ComponentModel.TypeConverter": "4.0.1-rc2-*",
"System.Diagnostics.Debug": "4.0.11-rc2-*",
"System.Diagnostics.Tools": "4.0.1-rc2-*",
"System.Linq": "4.1.0-rc2-*",
"System.Net.NetworkInformation": "4.1.0-rc2-*",
"System.Net.Primitives": "4.0.11-rc2-*",
"System.Net.Sockets": "4.1.0-rc2-*",
"System.Security.Cryptography.Algorithms": "4.1.0-rc2-*",
"System.Reflection.Primitives": "4.0.1-rc2-*",
"System.Resources.ResourceManager": "4.0.1-rc2-*",
"System.Runtime": "4.1.0-rc2-*",
"System.Runtime.Extensions": "4.1.0-rc2-*",
"System.Runtime.Numerics": "4.0.1-rc2-*",
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-*",
"System.Threading": "4.0.11-rc2-*"
"Microsoft.CSharp": "4.0.1",
"System.Collections": "4.0.11",
"System.ComponentModel.TypeConverter": "4.1.0",
"System.Diagnostics.Debug": "4.0.11",
"System.Diagnostics.Tools": "4.0.1",
"System.Linq": "4.1.0",
"System.Net.NetworkInformation": "4.1.0",
"System.Net.Primitives": "4.0.11",
"System.Net.Sockets": "4.1.0",
"System.Security.Cryptography.Algorithms": "4.2.0",
"System.Reflection.Primitives": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Runtime.Numerics": "4.0.1",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Threading": "4.0.11"
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions global.json
@@ -0,0 +1,6 @@
{
"projects": ["SharpSnmpLib", "Tests"],
"sdk": {
"version": "1.0.0-preview2-003121"
}
}

0 comments on commit 0c7341a

Please sign in to comment.