diff --git a/netxml2kml/Methods/CliOptionsHandlers.cs b/netxml2kml/Methods/CliOptionsHandlers.cs index de1e4ae..9baec16 100644 --- a/netxml2kml/Methods/CliOptionsHandlers.cs +++ b/netxml2kml/Methods/CliOptionsHandlers.cs @@ -69,7 +69,8 @@ public static class CliOptionsHandlers private static string GetKmlString(IEnumerable wirelessNetworks, string name = "WiFi Map", - string description = $"Autogenerated by a tool.\nhttps://github.com/cuqmbr/netxml2kml") + string description = $"Autogenerated by a tool." + + $"\nhttps://github.com/cuqmbr/netxml2kml") { var kmlTree = new XDocument(); @@ -162,6 +163,7 @@ public static class CliOptionsHandlers foreach (var wirelessConnection in wirelessNetwork.WirelessConnections) { var client = wirelessConnection.WirelessClient; + client.WirelessConnections = null!; // Add new client to the DB if it is not present if (!dbContext.WirelessClients.Any(wc => diff --git a/netxml2kml/netxml2kml.csproj b/netxml2kml/netxml2kml.csproj index bae0828..46bbb5c 100644 --- a/netxml2kml/netxml2kml.csproj +++ b/netxml2kml/netxml2kml.csproj @@ -12,6 +12,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive +