diff --git a/.vs/opdracht2/v16/.suo b/.vs/opdracht2/v16/.suo index d346688..ed3d4ba 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 aadc23e..661c35b 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 41dd284..ff3e469 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 25e3992..3a5af45 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 6741b88..74def9e 100644 Binary files a/Datalaag/bin/Debug/Globals.pdb and b/Datalaag/bin/Debug/Globals.pdb differ diff --git a/Datalaag/obj/Debug/Datalaag.csproj.CoreCompileInputs.cache b/Datalaag/obj/Debug/Datalaag.csproj.CoreCompileInputs.cache index a1c4986..e6e66a3 100644 --- a/Datalaag/obj/Debug/Datalaag.csproj.CoreCompileInputs.cache +++ b/Datalaag/obj/Debug/Datalaag.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -1aac4e0899df5feb0669e197a1d3195f0dbc1df6 +2625662995a5416f583e52eec4eeee7614b53f21 diff --git a/Datalaag/obj/Debug/Datalaag.csprojAssemblyReference.cache b/Datalaag/obj/Debug/Datalaag.csprojAssemblyReference.cache index 0db4aa6..00359a7 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 aadc23e..661c35b 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 41dd284..ff3e469 100644 Binary files a/Datalaag/obj/Debug/Datalaag.pdb and b/Datalaag/obj/Debug/Datalaag.pdb differ diff --git a/Globals/Punt.cs b/Globals/Punt.cs index a2660d3..9072a95 100644 --- a/Globals/Punt.cs +++ b/Globals/Punt.cs @@ -42,7 +42,7 @@ namespace Globals return new Point(X, Y); } - public bool Graden = false; + public bool Graden = true; } } diff --git a/Globals/bin/Debug/Globals.dll b/Globals/bin/Debug/Globals.dll index 25e3992..3a5af45 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 6741b88..74def9e 100644 Binary files a/Globals/bin/Debug/Globals.pdb and b/Globals/bin/Debug/Globals.pdb differ diff --git a/Globals/obj/Debug/Globals.csproj.CoreCompileInputs.cache b/Globals/obj/Debug/Globals.csproj.CoreCompileInputs.cache index 277f9ae..0a8fa15 100644 --- a/Globals/obj/Debug/Globals.csproj.CoreCompileInputs.cache +++ b/Globals/obj/Debug/Globals.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -a6c3e98f6f8e04ba44c655fd229baf3074a6e170 +bce574199a38fb1c00726b6025d38e501fe5f75d diff --git a/Globals/obj/Debug/Globals.csprojAssemblyReference.cache b/Globals/obj/Debug/Globals.csprojAssemblyReference.cache index fdc0189..70f5314 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 25e3992..3a5af45 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 6741b88..74def9e 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 475506e..24f2ad3 100644 --- a/Logica/PolygonManipulatie.cs +++ b/Logica/PolygonManipulatie.cs @@ -44,16 +44,26 @@ namespace Logica public PolygonPunten ScalePolygon(PolygonPunten polygon, double scaleX, double scaleY, double offsetX = 180, double offsetY = 180) { - double maxX = polygon.MaximumX; - double maxY = polygon.MaximumY; + double maxX = polygon.MaximumX - polygon.MinimumX; + double maxY = polygon.MaximumY - polygon.MinimumY; double minX = polygon.MinimumX; double minY = polygon.MinimumY; List returnWaarde = new List(); foreach (Punt punt in polygon.Punten) { - Punt x = ScalePoint(scaleX, scaleY,punt, maxX, maxY, offsetX, offsetY); - x.Naam = punt.Naam; - returnWaarde.Add(x); + //Punt x = ScalePoint(scaleX, scaleY, punt, maxX, maxY, offsetX, offsetY); + + double x = punt.X - minX; + x /= maxX; + x *= scaleX; + x += offsetX; + double y = punt.Y - minY; + y /= maxY; + y *= scaleY; + y += offsetY; + returnWaarde.Add(new Punt(x, y, punt.Naam)); + //x.Naam = punt.Naam; + //returnWaarde.Add(x); } return new PolygonPunten(returnWaarde, polygon.Naam); } diff --git a/Logica/bin/Debug/Datalaag.dll b/Logica/bin/Debug/Datalaag.dll index aadc23e..661c35b 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 41dd284..ff3e469 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 25e3992..3a5af45 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 6741b88..74def9e 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 ef81b98..9e4ad53 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 c2179e1..baf17b2 100644 Binary files a/Logica/bin/Debug/Logica.pdb and b/Logica/bin/Debug/Logica.pdb differ diff --git a/Logica/obj/Debug/Logica.csproj.CoreCompileInputs.cache b/Logica/obj/Debug/Logica.csproj.CoreCompileInputs.cache index c060522..ec4191e 100644 --- a/Logica/obj/Debug/Logica.csproj.CoreCompileInputs.cache +++ b/Logica/obj/Debug/Logica.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -49af496af2f1df8211268fd2e6c93944e9ef3197 +19911095ba0015434cd13d58c152e22fd47e8005 diff --git a/Logica/obj/Debug/Logica.csprojAssemblyReference.cache b/Logica/obj/Debug/Logica.csprojAssemblyReference.cache index 829ef36..3686076 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 ef81b98..9e4ad53 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 c2179e1..baf17b2 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 edd4356..5536fa1 100644 --- a/opdracht2/MainWindow.xaml.cs +++ b/opdracht2/MainWindow.xaml.cs @@ -201,7 +201,7 @@ namespace opdracht2 Debug.WriteLine(lb.SelectedItem.GetType().Name); c.Children.Clear(); MultiPolygonPunten mp = (MultiPolygonPunten)lb.SelectedItem; - if (scale.IsChecked == true) mp = pm.ScaleMultiPolygon(mp, c.Width / 2, c.Height / 2, c.Width / 2, c.Height / 2); + if (scale.IsChecked == true) mp = pm.ScaleMultiPolygon(mp, 100, 100, 0, 0); //hier ervoor zorgen dat scaling, triangulation etc gebeurt door gebruik van logica layer functies te callen foreach (PolygonPunten pp in mp.PolygonPunten) { @@ -223,7 +223,7 @@ namespace opdracht2 Debug.WriteLine(lb.SelectedItem.GetType().Name); c.Children.Clear(); PolygonPunten p = (PolygonPunten)lb.SelectedItem; - if (scale.IsChecked == true) p = pm.ScalePolygon(p, c.Width / 2, c.Height / 2, c.Width / 2, c.Height / 2); + if (scale.IsChecked == true) p = pm.ScalePolygon(p, 10000, 10000, 0, 0); if (triangulate.IsChecked == true) { foreach(PolygonPunten pp in pm.TriangulatePolygon(p)) @@ -244,7 +244,7 @@ namespace opdracht2 { c.Children.Clear(); } - + Debug.WriteLine("finished"); } diff --git a/opdracht2/bin/Debug/netcoreapp3.1/Datalaag.dll b/opdracht2/bin/Debug/netcoreapp3.1/Datalaag.dll index aadc23e..661c35b 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 41dd284..ff3e469 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 25e3992..3a5af45 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 6741b88..74def9e 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 ef81b98..9e4ad53 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 c2179e1..baf17b2 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 4b1150f..2388cab 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 94f3507..a3f7687 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/bin/Debug/netcoreapp3.1/opdracht2.runtimeconfig.dev.json b/opdracht2/bin/Debug/netcoreapp3.1/opdracht2.runtimeconfig.dev.json index a1d84ca..c2c719d 100644 --- a/opdracht2/bin/Debug/netcoreapp3.1/opdracht2.runtimeconfig.dev.json +++ b/opdracht2/bin/Debug/netcoreapp3.1/opdracht2.runtimeconfig.dev.json @@ -1,9 +1,8 @@ { "runtimeOptions": { "additionalProbingPaths": [ - "C:\\Users\\Admin\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Admin\\.nuget\\packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + "C:\\Users\\Beppe\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Beppe\\.nuget\\packages" ] } } \ No newline at end of file diff --git a/opdracht2/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs b/opdracht2/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs index 25eb7f6..53f92ef 100644 --- a/opdracht2/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs +++ b/opdracht2/obj/Debug/netcoreapp3.1/MainWindow.g.i.cs @@ -101,7 +101,7 @@ namespace opdracht2 { return; } _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/opdracht2;V1.0.0.0;component/mainwindow.xaml", System.UriKind.Relative); + System.Uri resourceLocater = new System.Uri("/opdracht2;component/mainwindow.xaml", System.UriKind.Relative); #line 1 "..\..\..\MainWindow.xaml" System.Windows.Application.LoadComponent(this, resourceLocater); diff --git a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.assets.cache b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.assets.cache index 7d2d682..5604e58 100644 Binary files a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.assets.cache and b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.assets.cache differ diff --git a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.csproj.CoreCompileInputs.cache b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.csproj.CoreCompileInputs.cache index 2d3ce01..f80f941 100644 --- a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.csproj.CoreCompileInputs.cache +++ b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -b0963f2dbdd1b2a4078ad0411090a3b4a307ab32 +333d42d081eb5648599bfa58a7cbd5c56cf6bf43 diff --git a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.csprojAssemblyReference.cache b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.csprojAssemblyReference.cache index 61bf6dc..4baf27d 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.designer.runtimeconfig.json b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.designer.runtimeconfig.json index b7dc9b1..d65adbf 100644 --- a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.designer.runtimeconfig.json +++ b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.designer.runtimeconfig.json @@ -6,9 +6,8 @@ "version": "3.1.0" }, "additionalProbingPaths": [ - "C:\\Users\\Admin\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Admin\\.nuget\\packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + "C:\\Users\\Beppe\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\Beppe\\.nuget\\packages" ], "configProperties": { "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true diff --git a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.dll b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2.dll index 4b1150f..2388cab 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 94f3507..a3f7687 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/Debug/netcoreapp3.1/opdracht2_MarkupCompile.cache b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.cache index b902401..1c4b89c 100644 --- a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.cache +++ b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.cache @@ -4,16 +4,16 @@ winexe C# .cs -C:\Users\Admin\Source\Repos\project-opdracht2\opdracht2\obj\Debug\netcoreapp3.1\ +C:\Users\Beppe\source\repos\opdracht2\opdracht2\obj\Debug\netcoreapp3.1\ opdracht2 none false TRACE;DEBUG;NETCOREAPP;NETCOREAPP3_1 -C:\Users\Admin\Source\Repos\project-opdracht2\opdracht2\App.xaml +C:\Users\Beppe\source\repos\opdracht2\opdracht2\App.xaml 11151548125 4-1295637703 -198-1098397428 +1981362301543 MainWindow.xaml; False diff --git a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.i.cache b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.i.cache index 996df41..4449608 100644 --- a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.i.cache +++ b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.i.cache @@ -4,17 +4,17 @@ winexe C# .cs -C:\Users\Admin\Source\Repos\project-opdracht2\opdracht2\obj\Debug\netcoreapp3.1\ +C:\Users\Beppe\source\repos\opdracht2\opdracht2\obj\Debug\netcoreapp3.1\ opdracht2 none false TRACE;DEBUG;NETCOREAPP;NETCOREAPP3_1 -C:\Users\Admin\Source\Repos\project-opdracht2\opdracht2\App.xaml +C:\Users\Beppe\source\repos\opdracht2\opdracht2\App.xaml 11151548125 6-680205189 -198-1098397428 +1981362301543 MainWindow.xaml; -False +True diff --git a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.i.lref b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.i.lref index 389e409..2e0809b 100644 --- a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.i.lref +++ b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.i.lref @@ -1,4 +1,4 @@  -FC:\Users\Admin\Source\Repos\project-opdracht2\opdracht2\MainWindow.xaml;; +FC:\Users\Beppe\source\repos\opdracht2\opdracht2\MainWindow.xaml;; diff --git a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.lref b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.lref index 389e409..2e0809b 100644 --- a/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.lref +++ b/opdracht2/obj/Debug/netcoreapp3.1/opdracht2_MarkupCompile.lref @@ -1,4 +1,4 @@  -FC:\Users\Admin\Source\Repos\project-opdracht2\opdracht2\MainWindow.xaml;; +FC:\Users\Beppe\source\repos\opdracht2\opdracht2\MainWindow.xaml;; diff --git a/opdracht2/obj/opdracht2.csproj.nuget.dgspec.json b/opdracht2/obj/opdracht2.csproj.nuget.dgspec.json index cfc8454..3340e16 100644 --- a/opdracht2/obj/opdracht2.csproj.nuget.dgspec.json +++ b/opdracht2/obj/opdracht2.csproj.nuget.dgspec.json @@ -1,19 +1,19 @@ { "format": 1, "restore": { - "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\opdracht2\\opdracht2.csproj": {} + "C:\\Users\\Beppe\\source\\repos\\opdracht2\\opdracht2\\opdracht2.csproj": {} }, "projects": { - "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Datalaag\\Datalaag.csproj": { + "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Datalaag\\Datalaag.csproj": { "restore": { - "projectUniqueName": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Datalaag\\Datalaag.csproj", + "projectUniqueName": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Datalaag\\Datalaag.csproj", "projectName": "Datalaag", - "projectPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Datalaag\\Datalaag.csproj", + "projectPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Datalaag\\Datalaag.csproj", "frameworks": { "net472": { "projectReferences": { - "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Globals\\Globals.csproj": { - "projectPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Globals\\Globals.csproj" + "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Globals\\Globals.csproj": { + "projectPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Globals\\Globals.csproj" } } } @@ -23,29 +23,29 @@ "net472": {} } }, - "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Globals\\Globals.csproj": { + "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Globals\\Globals.csproj": { "restore": { - "projectUniqueName": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Globals\\Globals.csproj", + "projectUniqueName": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Globals\\Globals.csproj", "projectName": "Globals", - "projectPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Globals\\Globals.csproj" + "projectPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Globals\\Globals.csproj" }, "frameworks": { "net472": {} } }, - "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Logica\\Logica.csproj": { + "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Logica\\Logica.csproj": { "restore": { - "projectUniqueName": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Logica\\Logica.csproj", + "projectUniqueName": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Logica\\Logica.csproj", "projectName": "Logica", - "projectPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Logica\\Logica.csproj", + "projectPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Logica\\Logica.csproj", "frameworks": { "net472": { "projectReferences": { - "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Datalaag\\Datalaag.csproj": { - "projectPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Datalaag\\Datalaag.csproj" + "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Datalaag\\Datalaag.csproj": { + "projectPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Datalaag\\Datalaag.csproj" }, - "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Globals\\Globals.csproj": { - "projectPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Globals\\Globals.csproj" + "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Globals\\Globals.csproj": { + "projectPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Globals\\Globals.csproj" } } } @@ -55,20 +55,17 @@ "net472": {} } }, - "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\opdracht2\\opdracht2.csproj": { + "C:\\Users\\Beppe\\source\\repos\\opdracht2\\opdracht2\\opdracht2.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\opdracht2\\opdracht2.csproj", + "projectUniqueName": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\opdracht2\\opdracht2.csproj", "projectName": "opdracht2", - "projectPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\opdracht2\\opdracht2.csproj", - "packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\opdracht2\\obj\\", + "projectPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\opdracht2\\opdracht2.csproj", + "packagesPath": "C:\\Users\\Beppe\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\opdracht2\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Beppe\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -81,14 +78,14 @@ "frameworks": { "netcoreapp3.1": { "projectReferences": { - "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Datalaag\\Datalaag.csproj": { - "projectPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Datalaag\\Datalaag.csproj" + "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Datalaag\\Datalaag.csproj": { + "projectPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Datalaag\\Datalaag.csproj" }, - "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Globals\\Globals.csproj": { - "projectPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Globals\\Globals.csproj" + "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Globals\\Globals.csproj": { + "projectPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Globals\\Globals.csproj" }, - "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Logica\\Logica.csproj": { - "projectPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Logica\\Logica.csproj" + "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Logica\\Logica.csproj": { + "projectPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Logica\\Logica.csproj" } } } diff --git a/opdracht2/obj/opdracht2.csproj.nuget.g.props b/opdracht2/obj/opdracht2.csproj.nuget.g.props index 4665e5b..f4394fb 100644 --- a/opdracht2/obj/opdracht2.csproj.nuget.g.props +++ b/opdracht2/obj/opdracht2.csproj.nuget.g.props @@ -5,7 +5,7 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\Admin\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + C:\Users\Beppe\.nuget\packages\ PackageReference 5.6.0 @@ -13,6 +13,6 @@ $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - C:\Users\Admin\.nuget\packages\newtonsoft.json\10.0.2 + C:\Users\Beppe\.nuget\packages\newtonsoft.json\10.0.2 \ No newline at end of file diff --git a/opdracht2/obj/project.assets.json b/opdracht2/obj/project.assets.json index b97bd35..2b5582b 100644 --- a/opdracht2/obj/project.assets.json +++ b/opdracht2/obj/project.assets.json @@ -5399,23 +5399,19 @@ ] }, "packageFolders": { - "C:\\Users\\Admin\\.nuget\\packages\\": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + "C:\\Users\\Beppe\\.nuget\\packages\\": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\opdracht2\\opdracht2.csproj", + "projectUniqueName": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\opdracht2\\opdracht2.csproj", "projectName": "opdracht2", - "projectPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\opdracht2\\opdracht2.csproj", - "packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\opdracht2\\obj\\", + "projectPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\opdracht2\\opdracht2.csproj", + "packagesPath": "C:\\Users\\Beppe\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\opdracht2\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\Beppe\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ @@ -5428,14 +5424,14 @@ "frameworks": { "netcoreapp3.1": { "projectReferences": { - "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Datalaag\\Datalaag.csproj": { - "projectPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Datalaag\\Datalaag.csproj" + "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Datalaag\\Datalaag.csproj": { + "projectPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Datalaag\\Datalaag.csproj" }, - "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Globals\\Globals.csproj": { - "projectPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Globals\\Globals.csproj" + "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Globals\\Globals.csproj": { + "projectPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Globals\\Globals.csproj" }, - "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Logica\\Logica.csproj": { - "projectPath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\Logica\\Logica.csproj" + "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Logica\\Logica.csproj": { + "projectPath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\Logica\\Logica.csproj" } } } diff --git a/opdracht2/obj/project.nuget.cache b/opdracht2/obj/project.nuget.cache index 386fda2..c7b4006 100644 --- a/opdracht2/obj/project.nuget.cache +++ b/opdracht2/obj/project.nuget.cache @@ -1,96 +1,96 @@ { "version": 2, - "dgSpecHash": "6yIxHnQqXGKJUKuCN5CsHhJrUJMBefNq7RxH6+LPtIF3sD5UkvHCcerZd1yoxWDd6vXBI344Vgs0keC24zEUpg==", + "dgSpecHash": "Zy6jypDVLiSwLfNswZHvoD7ul/+NOG2AgIE/eLzWMMgAaQ+TzAjn3Or2nqa6RpIYT9zQrkp/4+yCHo1D0FoSMQ==", "success": true, - "projectFilePath": "C:\\Users\\Admin\\Source\\Repos\\project-opdracht2\\opdracht2\\opdracht2.csproj", + "projectFilePath": "C:\\Users\\Beppe\\source\\repos\\opdracht2\\opdracht2\\opdracht2.csproj", "expectedPackageFiles": [ - "C:\\Users\\Admin\\.nuget\\packages\\geojson.net\\1.2.19\\geojson.net.1.2.19.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", - "C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Admin\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", - "C:\\Users\\Admin\\.nuget\\packages\\newtonsoft.json\\10.0.2\\newtonsoft.json.10.0.2.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.buffers\\4.3.0\\system.buffers.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.diagnosticsource\\4.3.0\\system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Users\\Admin\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512" + "C:\\Users\\Beppe\\.nuget\\packages\\geojson.net\\1.2.19\\geojson.net.1.2.19.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\newtonsoft.json\\10.0.2\\newtonsoft.json.10.0.2.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.buffers\\4.3.0\\system.buffers.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.3.0\\system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\Beppe\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file