diff --git a/csharp/App/EmuMeterDriver/EmuMeterDriver.csproj b/csharp/App/EmuMeterDriver/EmuMeterDriver.csproj index 97bfb0569..5afaaff4a 100644 --- a/csharp/App/EmuMeterDriver/EmuMeterDriver.csproj +++ b/csharp/App/EmuMeterDriver/EmuMeterDriver.csproj @@ -1,5 +1,10 @@ + + + InnovEnergy.App.EmuMeterDriver + + @@ -13,5 +18,7 @@ + + diff --git a/csharp/App/EmuMeterDriver/Nic.cs b/csharp/App/EmuMeterDriver/Nic.cs index 0b81b0843..2c507cb8d 100644 --- a/csharp/App/EmuMeterDriver/Nic.cs +++ b/csharp/App/EmuMeterDriver/Nic.cs @@ -12,7 +12,7 @@ public readonly struct Nic private readonly JsonNode _Node; - public Nic(JsonNode node) + private Nic(JsonNode node) { _Node = node; } @@ -134,11 +134,11 @@ public readonly struct Nic .ExecuteBufferedAsync(); return JsonNode - .Parse(result.StandardOutput)! - .AsArray() - .Where(n=>n != null) - .Select(n=> new Nic(n!)) - .ToList(); + .Parse(result.StandardOutput)! + .AsArray() + .Where(n => n != null) + .Select(n => new Nic(n!)) + .ToList(); } catch {