You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devicemap.apache.org by wk...@apache.org on 2015/08/20 19:52:46 UTC

svn commit: r1696830 - in /devicemap/trunk/clients/1.0/csharp: DeviceMap/DeviceMapClient.cs DeviceMapConsole/Program.cs NOTICE README

Author: wkeil
Date: Thu Aug 20 17:52:46 2015
New Revision: 1696830

URL: http://svn.apache.org/r1696830
Log:
DMAP-172: Build .NET clients with Visual Studio Code 

Task-Url: https://issues.apache.org/jira/browse/DMAP-172

Modified:
    devicemap/trunk/clients/1.0/csharp/DeviceMap/DeviceMapClient.cs
    devicemap/trunk/clients/1.0/csharp/DeviceMapConsole/Program.cs
    devicemap/trunk/clients/1.0/csharp/NOTICE
    devicemap/trunk/clients/1.0/csharp/README

Modified: devicemap/trunk/clients/1.0/csharp/DeviceMap/DeviceMapClient.cs
URL: http://svn.apache.org/viewvc/devicemap/trunk/clients/1.0/csharp/DeviceMap/DeviceMapClient.cs?rev=1696830&r1=1696829&r2=1696830&view=diff
==============================================================================
--- devicemap/trunk/clients/1.0/csharp/DeviceMap/DeviceMapClient.cs (original)
+++ devicemap/trunk/clients/1.0/csharp/DeviceMap/DeviceMapClient.cs Thu Aug 20 17:52:46 2015
@@ -30,9 +30,10 @@ namespace DeviceMap
     /// <summary>
     ///  DeviceMap User-Agent Resolver
     /// </summary>
-    /// <author>eberhard speer jr.</author>
-    /// <remarks>Apache DeviceMap Project .Net version 
-    ///          ported from Reza Naghibi's DeviceMapClient.java</remarks>
+    /// <author>Eberhard Speer jr.</author>
+    /// <author>Werner Keil</author>
+    /// <remarks>Apache DeviceMap Client C# version 
+    ///          inspired by Reza Naghibi's DeviceMapClassifier.java</remarks>
     public sealed class DeviceMapClient
     {
         //

Modified: devicemap/trunk/clients/1.0/csharp/DeviceMapConsole/Program.cs
URL: http://svn.apache.org/viewvc/devicemap/trunk/clients/1.0/csharp/DeviceMapConsole/Program.cs?rev=1696830&r1=1696829&r2=1696830&view=diff
==============================================================================
--- devicemap/trunk/clients/1.0/csharp/DeviceMapConsole/Program.cs (original)
+++ devicemap/trunk/clients/1.0/csharp/DeviceMapConsole/Program.cs Thu Aug 20 17:52:46 2015
@@ -38,7 +38,7 @@ class Program
         }
         catch (DeviceMapException deviceMapException)
         {
-            Util.WriteEntry("dd", deviceMapException.Message, EventLogEntryType.Error, deviceMapException);
+            Util.WriteEntry("DeviceMap", deviceMapException.Message, EventLogEntryType.Error, deviceMapException);
             Console.WriteLine(deviceMapException.Message);
         }
         stopWatch.Stop();
@@ -80,6 +80,7 @@ class Program
         {
             Console.WriteLine(string.Format("Test file {0} not found.", data));
         }
+        Console.WriteLine("Press any key to finish");
         Console.ReadKey();
     }
 

Modified: devicemap/trunk/clients/1.0/csharp/NOTICE
URL: http://svn.apache.org/viewvc/devicemap/trunk/clients/1.0/csharp/NOTICE?rev=1696830&r1=1696829&r2=1696830&view=diff
==============================================================================
--- devicemap/trunk/clients/1.0/csharp/NOTICE (original)
+++ devicemap/trunk/clients/1.0/csharp/NOTICE Thu Aug 20 17:52:46 2015
@@ -1,5 +1,5 @@
 Apache DeviceMap
-Copyright 2013 The Apache Software Foundation
+Copyright 2013-2015 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
\ No newline at end of file

Modified: devicemap/trunk/clients/1.0/csharp/README
URL: http://svn.apache.org/viewvc/devicemap/trunk/clients/1.0/csharp/README?rev=1696830&r1=1696829&r2=1696830&view=diff
==============================================================================
--- devicemap/trunk/clients/1.0/csharp/README (original)
+++ devicemap/trunk/clients/1.0/csharp/README Thu Aug 20 17:52:46 2015
@@ -1,3 +1,10 @@
-Device Map .Net Client
+DeviceMap .NET C# Client
 
-CLS (ISO/IEC 23271:2012) compliant .Net version of Device Map Java Client
+CLS (ISO/IEC 23271:2012) compliant .NET version of Apache DeviceMap Client
+
+# Build
+
+## Edit
+You can edit all plain text sources with a text editor of your choice, e.g. Visual Studio Code: https://code.visualstudio.com/
+
+## Compile