Skip to content
This repository has been archived by the owner on Apr 22, 2019. It is now read-only.

Commit

Permalink
Fixed NuGet definition.
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm committed May 22, 2015
1 parent 88746dd commit fe3d07c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
18 changes: 9 additions & 9 deletions .nuget/Lextm.SharpSnmpLib.nuspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<version>8.5.0.0</version>
<version>9.0.0-alpha1</version>
<authors>Malcolm Crowe,Lex Li,and other contributors.</authors>
<owners>Lex Li</owners>
<licenseUrl>http://sharpsnmplib.codeplex.com/wikipage?title=600012&amp;referringTitle=KB</licenseUrl>
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
<projectUrl>http://sharpsnmplib.codeplex.com/</projectUrl>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework="" />
Expand All @@ -15,16 +15,16 @@
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>#SNMP (SharpSNMP) Library is an open source library for developers who target Microsoft .NET/Xamarin/Mono platforms. It's developed in C# and can be used for VB.NET, Delphi Prism, and more.</description>
<summary>#SNMP open source SNMP library for .NET and Mono.</summary>
<releaseNotes>https://sharpsnmplib.codeplex.com/releases/view/118578</releaseNotes>
<releaseNotes>http://sharpsnmplib.codeplex.com/releases/view/116908</releaseNotes>
<copyright>(C) 2008-2015 Malcolm Crowe, Lex Li, and other contributors.</copyright>
<language>en-US</language>
<tags>snmp</tags>
</metadata>
<files>
<file src="..\bin\SharpSnmpLib.Full.dll" target="lib\net40\SharpSnmpLib.Full.dll" />
<file src="..\bin\SharpSnmpLib.Full.xml" target="lib\net40\SharpSnmpLib.Full.xml" />
<file src="..\bin\SharpSnmpLib.Portable.dll" target="lib\net40\SharpSnmpLib.Portable.dll" />
<file src="..\bin\SharpSnmpLib.Portable.xml" target="lib\net40\SharpSnmpLib.Portable.xml" />
<file src="..\bin\SharpSnmpLib.Full.dll" target="lib\net45\SharpSnmpLib.Full.dll" />
<file src="..\bin\SharpSnmpLib.Full.xml" target="lib\net45\SharpSnmpLib.Full.xml" />
<file src="..\bin\SharpSnmpLib.Portable.dll" target="lib\net45\SharpSnmpLib.Portable.dll" />
<file src="..\bin\SharpSnmpLib.Portable.xml" target="lib\net45\SharpSnmpLib.Portable.xml" />
<file src="..\bin\SharpSnmpLib.Portable.dll" target="lib\Xamarin.iOS10\SharpSnmpLib.Portable.dll" />
<file src="..\bin\SharpSnmpLib.Portable.xml" target="lib\Xamarin.iOS10\SharpSnmpLib.Portable.xml" />
<file src="..\bin\SharpSnmpLib.iOS.dll" target="lib\Xamarin.iOS10\SharpSnmpLib.iOS.dll" />
Expand All @@ -33,7 +33,7 @@
<file src="..\bin\SharpSnmpLib.Android.dll" target="lib\Monoandroid\SharpSnmpLib.Android.dll" />
<file src="..\bin\SharpSnmpLib.Full.xml" target="lib\Monoandroid\SharpSnmpLib.Android.xml" />
<file src="..\bin\SharpSnmpLib.Portable.xml" target="lib\Monoandroid\SharpSnmpLib.Portable.xml" />
<file src="..\bin\SharpSnmpLib.Portable.dll" target="lib\portable-net4+netcore45+MonoAndroid1+MonoTouch1\SharpSnmpLib.Portable.dll" />
<file src="..\bin\SharpSnmpLib.Portable.xml" target="lib\portable-net4+netcore45+MonoAndroid1+MonoTouch1\SharpSnmpLib.Portable.xml" />
<file src="..\bin\SharpSnmpLib.Portable.dll" target="lib\portable-net45+netcore45+MonoAndroid1+MonoTouch1\SharpSnmpLib.Portable.dll" />
<file src="..\bin\SharpSnmpLib.Portable.xml" target="lib\portable-net45+netcore45+MonoAndroid1+MonoTouch1\SharpSnmpLib.Portable.xml" />
</files>
</package>
3 changes: 1 addition & 2 deletions Tests/Messaging/Tests/GetRequestMessageTestFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,7 @@ public async Task TestResponseAsync()
GetRequestMessage message = new GetRequestMessage(0x4bed, VersionCode.V2, new OctetString("public"), new List<Variable> { new Variable(new ObjectIdentifier("1.3.6.1.2.1.1.1.0")) });

var users1 = new UserRegistry();
var response =
await message.GetResponseAsync(new IPEndPoint(IPAddress.Loopback, 16100), users1, socket);
var response = await message.GetResponseAsync(new IPEndPoint(IPAddress.Loopback, 16100), users1, socket);

engine.Stop();
Assert.AreEqual(SnmpType.ResponsePdu, response.TypeCode());
Expand Down
2 changes: 1 addition & 1 deletion snmpd/snmpd.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\RemObjects.Mono.Helpers\RemObjects.Mono.Helpers.csproj">
<Project>{5E9B9AB3-59E8-44FA-B3DC-5EE67800C462}</Project>
<Project>{5e9b9ab3-59e8-44fa-b3dc-5ee67800c462}</Project>
<Name>RemObjects.Mono.Helpers</Name>
</ProjectReference>
<ProjectReference Include="..\SharpSnmpLib\SharpSnmpLib.Full.csproj">
Expand Down

0 comments on commit fe3d07c

Please sign in to comment.