diff --git a/.vs/opdracht2/v16/.suo b/.vs/opdracht2/v16/.suo index db43ccb..913670f 100644 Binary files a/.vs/opdracht2/v16/.suo and b/.vs/opdracht2/v16/.suo differ diff --git a/Datalaag/bin/Debug/Datalaag.dll b/Datalaag/bin/Debug/Datalaag.dll index 661c35b..9165739 100644 Binary files a/Datalaag/bin/Debug/Datalaag.dll and b/Datalaag/bin/Debug/Datalaag.dll differ diff --git a/Datalaag/bin/Debug/Datalaag.pdb b/Datalaag/bin/Debug/Datalaag.pdb index ff3e469..c4967d6 100644 Binary files a/Datalaag/bin/Debug/Datalaag.pdb and b/Datalaag/bin/Debug/Datalaag.pdb differ diff --git a/Datalaag/bin/Debug/Globals.dll b/Datalaag/bin/Debug/Globals.dll index d3f540e..9ac85e4 100644 Binary files a/Datalaag/bin/Debug/Globals.dll and b/Datalaag/bin/Debug/Globals.dll differ diff --git a/Datalaag/bin/Debug/Globals.pdb b/Datalaag/bin/Debug/Globals.pdb index 9027ee6..e307690 100644 Binary files a/Datalaag/bin/Debug/Globals.pdb and b/Datalaag/bin/Debug/Globals.pdb differ diff --git a/Datalaag/obj/Debug/Datalaag.csprojAssemblyReference.cache b/Datalaag/obj/Debug/Datalaag.csprojAssemblyReference.cache index 56a26df..ab6d9af 100644 Binary files a/Datalaag/obj/Debug/Datalaag.csprojAssemblyReference.cache and b/Datalaag/obj/Debug/Datalaag.csprojAssemblyReference.cache differ diff --git a/Datalaag/obj/Debug/Datalaag.dll b/Datalaag/obj/Debug/Datalaag.dll index 661c35b..9165739 100644 Binary files a/Datalaag/obj/Debug/Datalaag.dll and b/Datalaag/obj/Debug/Datalaag.dll differ diff --git a/Datalaag/obj/Debug/Datalaag.pdb b/Datalaag/obj/Debug/Datalaag.pdb index ff3e469..c4967d6 100644 Binary files a/Datalaag/obj/Debug/Datalaag.pdb and b/Datalaag/obj/Debug/Datalaag.pdb differ diff --git a/Globals/MultiPolygonPunten.cs b/Globals/MultiPolygonPunten.cs index 6e0455b..e53e998 100644 --- a/Globals/MultiPolygonPunten.cs +++ b/Globals/MultiPolygonPunten.cs @@ -1,6 +1,5 @@ using System; using System.Collections.Generic; -using System.Linq; using GeoJSON.Net.Geometry; namespace Globals @@ -15,35 +14,38 @@ namespace Globals { PolygonPunten = polygonPunten; Naam = naam; - VindMaximumEnMinimum(polygonPunten); + UpdateMaximumEnMinimum(); } public MultiPolygonPunten(MultiPolygon multiPolygon, string naam = "") { Naam = naam; PolygonPunten = new List(); + bool reverse = true; foreach (Polygon polygon in multiPolygon.Coordinates) { - PolygonPunten.Add(new PolygonPunten(polygon, naam)); - } - VindMaximumEnMinimum(PolygonPunten); - bool sw = false; - foreach (PolygonPunten p in PolygonPunten) - { - if (sw) p.Punten.Reverse(); - sw = !sw; + PolygonPunten p = new PolygonPunten(polygon, naam, reverse); + PolygonPunten.Add(p); + reverse = !reverse; //reverse parameter voor polygonpunten is sneler dan + UpdateMaximumEnMinimum(p); } } - private void VindMaximumEnMinimum(List polygonPunten) + private void UpdateMaximumEnMinimum(PolygonPunten polygon) { - MaximumX = polygonPunten.Max(p => p.MaximumX); - MaximumY = polygonPunten.Max(p => p.MaximumY); - MinimumX = polygonPunten.Max(p => p.MinimumX); - MinimumY = polygonPunten.Max(p => p.MinimumY); - + if (polygon.MaximumX > MaximumX) MaximumX = polygon.MaximumX; + else if (polygon.MinimumX < MinimumX) MinimumX = polygon.MinimumX; + if (polygon.MaximumY > MaximumY) MaximumY = polygon.MaximumY; + else if (polygon.MinimumY < MinimumY) MinimumY = polygon.MinimumY; } + public void UpdateMaximumEnMinimum() + { + foreach (PolygonPunten polygon in PolygonPunten) + { + UpdateMaximumEnMinimum(polygon); + } + } public override string ToString() { diff --git a/Globals/PolygonPunten.cs b/Globals/PolygonPunten.cs index d9a7fd3..317c9e3 100644 --- a/Globals/PolygonPunten.cs +++ b/Globals/PolygonPunten.cs @@ -1,9 +1,6 @@ using System; using System.Collections.Generic; using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Shapes; using GeoJSON.Net.Geometry; namespace Globals { @@ -17,36 +14,67 @@ namespace Globals { Punten = punten; Naam = naam; - MaximumX = punten.Max(punt => punt.X); - MaximumY = punten.Max(punt => punt.Y); - MinimumX = punten.Min(punt => punt.X); - MinimumY = punten.Min(punt => punt.Y); + UpdateMaxEnMinPunt(); } - public PolygonPunten(GeoJSON.Net.Geometry.Polygon p, string naam = "") + public PolygonPunten(GeoJSON.Net.Geometry.Polygon polygon, string naam = "", bool reverse = true) { Naam = naam; Punten = new List(); - foreach (LineString l in p.Coordinates) + + foreach (LineString linestring in polygon.Coordinates) { - foreach (Position pos in l.Coordinates) + if (reverse) { - Punt pu = new Punt(pos.Longitude, pos.Latitude, naam); - if (!Punten.Contains(pu)) Punten.Add(pu); //dit vertraagd programma enorm, maar zorgt ervoor dat peuker beter werkt denk ik - //de vertraging komt vooral door de .Contains methode, deze mag weggelaten worden voor snelheid maar peuker zal niet meer zo goed werken + foreach (Position positie in linestring.Coordinates.Reverse()) //sneller om eerst te reversen dan tegen einde deze bewerking te doen + { + Punt punt = new Punt(positie.Longitude, positie.Latitude, naam); + + if (!Punten.Contains(punt)) { + Punten.Add(punt); //dit vertraagd programma enorm, maar zorgt ervoor dat peuker beter werkt denk ik + UpdateMaxEnMinPunt(punt); //sneller dan eindigen met punten.max en punten.min + } + //de vertraging komt vooral door de .Contains methode, deze mag weggelaten worden voor snelheid maar peuker zal niet meer zo goed werken + } } + else + { + foreach (Position positie in linestring.Coordinates) + { + Punt punt = new Punt(positie.Longitude, positie.Latitude, naam); + + if (!Punten.Contains(punt)) { + Punten.Add(punt); //dit vertraagd programma enorm, maar zorgt ervoor dat peuker beter werkt denk ik + UpdateMaxEnMinPunt(punt); //sneller dan eindigen met punten.max en punten.min + } + //de vertraging komt vooral door de .Contains methode, deze mag weggelaten worden voor snelheid maar peuker zal niet meer zo goed werken + } + } + } - Punten.Reverse(); - MaximumX = Punten.Max(punt => punt.X); - MaximumY = Punten.Max(punt => punt.Y); - MinimumX = Punten.Min(punt => punt.X); - MinimumY = Punten.Min(punt => punt.Y); } + private void UpdateMaxEnMinPunt(Punt punt) + { + if (punt.X > MaximumX) MaximumX = punt.X; + else if (punt.X < MinimumX) MinimumX = punt.X; + if (punt.Y > MaximumY) MaximumY = punt.Y; + else if (punt.Y < MinimumY) MinimumY = punt.Y; + } + + public void UpdateMaxEnMinPunt() + { + foreach (Punt punt in Punten) + { + UpdateMaxEnMinPunt(punt); + } + } + + public override string ToString() { if (string.Equals(Naam, "", StringComparison.Ordinal)) return "UNKNOWN"; - else return Naam; + return Naam; } public MultiPolygonPunten ToMultiPolygonPunten() diff --git a/Globals/Punt.cs b/Globals/Punt.cs index 5060c29..09b99e5 100644 --- a/Globals/Punt.cs +++ b/Globals/Punt.cs @@ -1,8 +1,4 @@ using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using System.Windows; namespace Globals @@ -16,8 +12,8 @@ namespace Globals Naam = naam; if (Graden) { - X = ConvertToRadians(x) * 100; - Y = ConvertToRadians(y) * 100; + X = ConvertToPercentage(x) * 100; + Y = ConvertToPercentage(y) * 100; } else { @@ -32,9 +28,10 @@ namespace Globals else return Naam; } - public double ConvertToRadians(double angle) + public double ConvertToPercentage(double angle) { - return (Math.PI / 180) * angle; + if (angle < 0) angle += 360; + return angle / 360; } public Point ToPoint() diff --git a/Globals/bin/Debug/Globals.dll b/Globals/bin/Debug/Globals.dll index d3f540e..9ac85e4 100644 Binary files a/Globals/bin/Debug/Globals.dll and b/Globals/bin/Debug/Globals.dll differ diff --git a/Globals/bin/Debug/Globals.pdb b/Globals/bin/Debug/Globals.pdb index 9027ee6..e307690 100644 Binary files a/Globals/bin/Debug/Globals.pdb and b/Globals/bin/Debug/Globals.pdb differ diff --git a/Globals/obj/Debug/Globals.csprojAssemblyReference.cache b/Globals/obj/Debug/Globals.csprojAssemblyReference.cache index 486b77d..e4dcafd 100644 Binary files a/Globals/obj/Debug/Globals.csprojAssemblyReference.cache and b/Globals/obj/Debug/Globals.csprojAssemblyReference.cache differ diff --git a/Globals/obj/Debug/Globals.dll b/Globals/obj/Debug/Globals.dll index d3f540e..9ac85e4 100644 Binary files a/Globals/obj/Debug/Globals.dll and b/Globals/obj/Debug/Globals.dll differ diff --git a/Globals/obj/Debug/Globals.pdb b/Globals/obj/Debug/Globals.pdb index 9027ee6..e307690 100644 Binary files a/Globals/obj/Debug/Globals.pdb and b/Globals/obj/Debug/Globals.pdb differ diff --git a/Logica/PolygonManipulatie.cs b/Logica/PolygonManipulatie.cs index a4123ad..3ae10b7 100644 --- a/Logica/PolygonManipulatie.cs +++ b/Logica/PolygonManipulatie.cs @@ -32,7 +32,7 @@ namespace Logica } //oude schaalmethodes - public PolygonPunten ScalePolygon(PolygonPunten polygon, double scaleX, double scaleY, double offsetX = 180, double offsetY = 180) + public PolygonPunten ScalePolygon(PolygonPunten polygon, double scaleX, double scaleY, double offsetX = 0, double offsetY = 0) { double maxX = polygon.MaximumX - polygon.MinimumX; double maxY = polygon.MaximumY - polygon.MinimumY; @@ -59,8 +59,8 @@ namespace Logica } //lat en long = graden, graden => coords (/360 * scale? - private static Punt ScalePoint(double scaleX, double scaleY, Punt punt, double maxX = 360, double maxY = 360, double offsetX = 180, double - offsetY = 180, double minX = 0, double minY = 0) + private static Punt ScalePoint(double scaleX, double scaleY, Punt punt, double maxX = 1, double maxY = 1, double offsetX = 0, double + offsetY = 0, double minX = 0, double minY = 0) { double x = punt.X - minX; x /= maxX; @@ -115,6 +115,8 @@ namespace Logica double maxY = multiPolygons.Max(m => m.MaximumY); double minX = multiPolygons.Min(m => m.MinimumX); double minY = multiPolygons.Min(m => m.MinimumY); + maxX -= minX; + maxY -= minY; List mpps = new List(); foreach (MultiPolygonPunten mp in multiPolygons) { diff --git a/Logica/bin/Debug/Datalaag.dll b/Logica/bin/Debug/Datalaag.dll index 661c35b..9165739 100644 Binary files a/Logica/bin/Debug/Datalaag.dll and b/Logica/bin/Debug/Datalaag.dll differ diff --git a/Logica/bin/Debug/Datalaag.pdb b/Logica/bin/Debug/Datalaag.pdb index ff3e469..c4967d6 100644 Binary files a/Logica/bin/Debug/Datalaag.pdb and b/Logica/bin/Debug/Datalaag.pdb differ diff --git a/Logica/bin/Debug/Globals.dll b/Logica/bin/Debug/Globals.dll index d3f540e..9ac85e4 100644 Binary files a/Logica/bin/Debug/Globals.dll and b/Logica/bin/Debug/Globals.dll differ diff --git a/Logica/bin/Debug/Globals.pdb b/Logica/bin/Debug/Globals.pdb index 9027ee6..e307690 100644 Binary files a/Logica/bin/Debug/Globals.pdb and b/Logica/bin/Debug/Globals.pdb differ diff --git a/Logica/bin/Debug/Logica.dll b/Logica/bin/Debug/Logica.dll index 8f3a0ce..f7983ec 100644 Binary files a/Logica/bin/Debug/Logica.dll and b/Logica/bin/Debug/Logica.dll differ diff --git a/Logica/bin/Debug/Logica.pdb b/Logica/bin/Debug/Logica.pdb index a721a1a..fb0427b 100644 Binary files a/Logica/bin/Debug/Logica.pdb and b/Logica/bin/Debug/Logica.pdb differ diff --git a/Logica/obj/Debug/Logica.csprojAssemblyReference.cache b/Logica/obj/Debug/Logica.csprojAssemblyReference.cache index e6b66eb..1ed5103 100644 Binary files a/Logica/obj/Debug/Logica.csprojAssemblyReference.cache and b/Logica/obj/Debug/Logica.csprojAssemblyReference.cache differ diff --git a/Logica/obj/Debug/Logica.dll b/Logica/obj/Debug/Logica.dll index 8f3a0ce..f7983ec 100644 Binary files a/Logica/obj/Debug/Logica.dll and b/Logica/obj/Debug/Logica.dll differ diff --git a/Logica/obj/Debug/Logica.pdb b/Logica/obj/Debug/Logica.pdb index a721a1a..fb0427b 100644 Binary files a/Logica/obj/Debug/Logica.pdb and b/Logica/obj/Debug/Logica.pdb differ diff --git a/opdracht2/MainWindow.xaml.cs b/opdracht2/MainWindow.xaml.cs index 6c19bbe..0e17e1c 100644 --- a/opdracht2/MainWindow.xaml.cs +++ b/opdracht2/MainWindow.xaml.cs @@ -2,22 +2,10 @@ using System; using System.Collections.Generic; using System.Diagnostics; -using System.Drawing; -using System.IO; -using System.Linq; using System.Reflection; -using System.Text; -using System.Threading; -using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; using System.Windows.Media; -using System.Windows.Media.Imaging; -using System.Windows.Navigation; using System.Windows.Shapes; using Globals; using Brush = System.Windows.Media.Brush; @@ -118,6 +106,19 @@ namespace opdracht2 //als een land geselecteerd wordt in lijst runned deze functie + + //voorbereiding van scale waarden. + + double scaleX = (c.ActualHeight > c.ActualWidth) ? c.ActualWidth : c.ActualHeight; + double scaleY = (c.ActualHeight > c.ActualWidth) ? c.ActualWidth : c.ActualHeight; + scaleX /= 2; + scaleY /= 2; + double offsetX = scaleX; //vroeger c.ActualWidth/2 + double offsetY = scaleY; + //dit zorgt voor evenredige scaling zonder stretching. als men wel stretching wilt gebruiken: + // scaleX = c.ActualWidth; + // scaleY = c.ActualHeight; + //is er meer dan 1 land geselecteerd if (lb.SelectedItems.Count >1) { @@ -135,7 +136,7 @@ namespace opdracht2 } //scale de polygon als de checkbox aan staat - if (scale.IsChecked == true) mpps = pm.ScaleMultiPolygons(mpps, c.ActualWidth/2, c.ActualHeight/2, 0, 0); + if (scale.IsChecked == true) mpps = pm.ScaleMultiPolygons(mpps, scaleX, scaleY, offsetX, offsetY); foreach(MultiPolygonPunten mp in mpps) { @@ -170,7 +171,7 @@ namespace opdracht2 Debug.WriteLine(lb.SelectedItem.GetType().Name); // voor debug redenen schrijf naam naar console c.Children.Clear(); // delete alle vorige afbeeldingen MultiPolygonPunten mp = (MultiPolygonPunten)lb.SelectedItem; //haal multipolygon uit lijst - if (scale.IsChecked == true) mp = pm.ScaleMultiPolygon(mp, c.ActualWidth / 2, c.ActualHeight / 2, 0, 0); //schaal multipolygon + if (scale.IsChecked == true) mp = pm.ScaleMultiPolygon(mp, scaleX, scaleY, offsetX, offsetY); //schaal multipolygon if (peuker.IsChecked == true) mp = pm.Peuker(mp, peukerPercent.Value/1000); // als peuker (puntvermindering) moet gebeuren, doe dit hier foreach (PolygonPunten pp in mp.PolygonPunten) //loop doorheen polygons in multipolygon { @@ -192,7 +193,8 @@ namespace opdracht2 Debug.WriteLine(lb.SelectedItem.GetType().Name); c.Children.Clear(); //delete alle vorige afbeeldingen PolygonPunten p = (PolygonPunten)lb.SelectedItem; // haal land uit lijst - if (scale.IsChecked == true) p = pm.ScalePolygon(p, c.ActualWidth/2, c.ActualHeight/2, 0, 0); // schaal polygon + + if (scale.IsChecked == true) p = pm.ScalePolygon(p, scaleX, scaleY, offsetX, offsetY); // schaal polygon if (peuker.IsChecked == true) p = pm.Peuker(p, peukerPercent.Value / 1000); // peuker (puntvermindering) if (triangulate.IsChecked == true) //triangulation check { diff --git a/opdracht2/bin/Debug/netcoreapp3.1/Datalaag.dll b/opdracht2/bin/Debug/netcoreapp3.1/Datalaag.dll index 661c35b..9165739 100644 Binary files a/opdracht2/bin/Debug/netcoreapp3.1/Datalaag.dll and b/opdracht2/bin/Debug/netcoreapp3.1/Datalaag.dll differ diff --git a/opdracht2/bin/Debug/netcoreapp3.1/Datalaag.pdb b/opdracht2/bin/Debug/netcoreapp3.1/Datalaag.pdb index ff3e469..c4967d6 100644 Binary files a/opdracht2/bin/Debug/netcoreapp3.1/Datalaag.pdb and b/opdracht2/bin/Debug/netcoreapp3.1/Datalaag.pdb differ diff --git a/opdracht2/bin/Debug/netcoreapp3.1/Globals.dll b/opdracht2/bin/Debug/netcoreapp3.1/Globals.dll index d3f540e..9ac85e4 100644 Binary files a/opdracht2/bin/Debug/netcoreapp3.1/Globals.dll and b/opdracht2/bin/Debug/netcoreapp3.1/Globals.dll differ diff --git a/opdracht2/bin/Debug/netcoreapp3.1/Globals.pdb b/opdracht2/bin/Debug/netcoreapp3.1/Globals.pdb index 9027ee6..e307690 100644 Binary files a/opdracht2/bin/Debug/netcoreapp3.1/Globals.pdb and b/opdracht2/bin/Debug/netcoreapp3.1/Globals.pdb differ diff --git a/opdracht2/bin/Debug/netcoreapp3.1/Logica.dll b/opdracht2/bin/Debug/netcoreapp3.1/Logica.dll index 8f3a0ce..f7983ec 100644 Binary files a/opdracht2/bin/Debug/netcoreapp3.1/Logica.dll and b/opdracht2/bin/Debug/netcoreapp3.1/Logica.dll differ diff --git a/opdracht2/bin/Debug/netcoreapp3.1/Logica.pdb b/opdracht2/bin/Debug/netcoreapp3.1/Logica.pdb index a721a1a..fb0427b 100644 Binary files a/opdracht2/bin/Debug/netcoreapp3.1/Logica.pdb and b/opdracht2/bin/Debug/netcoreapp3.1/Logica.pdb differ diff --git a/opdracht2/bin/Debug/netcoreapp3.1/opdracht2.dll b/opdracht2/bin/Debug/netcoreapp3.1/opdracht2.dll index 034aab3..0f43621 100644 Binary files a/opdracht2/bin/Debug/netcoreapp3.1/opdracht2.dll and b/opdracht2/bin/Debug/netcoreapp3.1/opdracht2.dll differ diff --git a/opdracht2/bin/Debug/netcoreapp3.1/opdracht2.pdb b/opdracht2/bin/Debug/netcoreapp3.1/opdracht2.pdb index f455552..3e8c7ed 100644 Binary files a/opdracht2/bin/Debug/netcoreapp3.1/opdracht2.pdb and b/opdracht2/bin/Debug/netcoreapp3.1/opdracht2.pdb differ diff --git a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.csprojAssemblyReference.cache b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.csprojAssemblyReference.cache index 4da17a5..3457320 100644 Binary files a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.csprojAssemblyReference.cache and b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.csprojAssemblyReference.cache differ diff --git a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.dll b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.dll index 034aab3..0f43621 100644 Binary files a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.dll and b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.dll differ diff --git a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.pdb b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.pdb index f455552..3e8c7ed 100644 Binary files a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.pdb and b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.pdb differ diff --git a/opdracht2/obj/opdracht2.csproj.nuget.dgspec.json b/opdracht2/obj/opdracht2.csproj.nuget.dgspec.json index 3340e16..178a586 100644 --- a/opdracht2/obj/opdracht2.csproj.nuget.dgspec.json +++ b/opdracht2/obj/opdracht2.csproj.nuget.dgspec.json @@ -5,6 +5,7 @@ }, "projects": { "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Datalaag\\Datalaag.csproj": { + "version": "1.0.0", "restore": { "projectUniqueName": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Datalaag\\Datalaag.csproj", "projectName": "Datalaag", @@ -24,6 +25,7 @@ } }, "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Globals\\Globals.csproj": { + "version": "1.0.0", "restore": { "projectUniqueName": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Globals\\Globals.csproj", "projectName": "Globals", @@ -34,6 +36,7 @@ } }, "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Logica\\Logica.csproj": { + "version": "1.0.0", "restore": { "projectUniqueName": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Logica\\Logica.csproj", "projectName": "Logica", diff --git a/opdracht2/obj/opdracht2.csproj.nuget.g.props b/opdracht2/obj/opdracht2.csproj.nuget.g.props index f4394fb..06e0a7a 100644 --- a/opdracht2/obj/opdracht2.csproj.nuget.g.props +++ b/opdracht2/obj/opdracht2.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\Beppe\.nuget\packages\ PackageReference - 5.6.0 + 5.5.0 $(MSBuildAllProjects);$(MSBuildThisFileFullPath) diff --git a/opdracht2/obj/project.nuget.cache b/opdracht2/obj/project.nuget.cache index c7b4006..dc4ba08 100644 --- a/opdracht2/obj/project.nuget.cache +++ b/opdracht2/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "Zy6jypDVLiSwLfNswZHvoD7ul/+NOG2AgIE/eLzWMMgAaQ+TzAjn3Or2nqa6RpIYT9zQrkp/4+yCHo1D0FoSMQ==", + "dgSpecHash": "p426YNxR+un7rXUpsV3S3g0htKyuFPUxB5pYHNl1fsHxje10LlIJDBLjupJb2IZCMEZ+Cv3TXWBEUMbbMYO5hA==", "success": true, "projectFilePath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\opdracht2\\opdracht2.csproj", "expectedPackageFiles": [