Add files via upload

main
RubenSchoonbaert 8 months ago committed by GitHub
parent 63ab10de6c
commit 6e3b3f8a33
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,24 @@
using System.Drawing;
namespace Global {
public class Ball {
public double x;
public double y;
public double size {
get;
}
public Color color;
public Ball() {
this.x = 0;
this.y = 0;
this.size = 0.4;
this.color = Color.Blue;
}
public void SetLocation(double x, double y) {
this.x = x;
this.y = y;
}
}
}

@ -0,0 +1,63 @@
using System.Drawing;
namespace Logica {
public class Cell {
public int id;
public int x;
public int y;
public bool[] walls = new bool[4];
public bool visited = false;
public bool isWall = false;
public bool isBacktracked = false;
public Color color;
// ____ <-0
// |<-3 | <-1
// | |
// ---- <-2
public Cell() {
}
public Cell(int id, Color color) {
this.color = color;
this.id = id;
}
public Cell(int id, int x, int y, bool[] muren) {
this.id = id;
this.x = x;
this.y = y;
this.walls = muren;
}
public int getId() {
return this.id;
}
public void setLocation(int x, int y) {
this.x = x;
this.y = y;
}
public void setWalls(bool bool0, bool bool1, bool bool2, bool bool3) {
this.walls[0] = bool0;
this.walls[1] = bool1;
this.walls[2] = bool2;
this.walls[3] = bool3;
}
public void SetDefaultWalls() {
this.walls[0] = false;
this.walls[1] = false;
this.walls[2] = false;
this.walls[3] = false;
}
public void SetVisited(bool visited) {
this.visited = visited;
}
public void SetWall(bool wall) {
this.isWall = true;
}
public void SetIsBacktracked(bool isBacktracked) {
this.isBacktracked = isBacktracked;
}
}
}

@ -0,0 +1,9 @@
namespace Global {
public enum Direction {
up,
down,
left,
right
}
}

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

@ -0,0 +1,43 @@
using Global;
using System.Drawing;
namespace Logica {
public class Maze {
public int height;
public int length;
public Cell endCell;
public Cell[,] cels;
public Ball ball {
get;
set;
}
public Maze(int height, int length) {
this.height = height;
this.length = length;
cels = new Cell[length, height];
}
/// <summary>
/// Generate empty cell grid
/// </summary>
/// <exception cref="Exception"></exception>
public void GenerateGrid(Color color) {
int idCount = 0;
if (height == 0 || length == 0) {
throw new Exception("Maze size can not be 0!");
}
for (int i = 0; i < height; i++) {
for (int j = 0; j < length; j++) {
Cell cell = new Cell(idCount, color);
cell.SetDefaultWalls();
cels[j, i] = cell;
idCount++;
}
}
}
}
}

@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v7.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v7.0": {
"Global/1.0.0": {
"runtime": {
"Global.dll": {}
}
}
}
},
"libraries": {
"Global/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v7.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v7.0": {
"Logica/1.0.0": {
"runtime": {
"Logica.dll": {}
}
}
}
},
"libraries": {
"Logica/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Global")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Global")]
[assembly: System.Reflection.AssemblyTitleAttribute("Global")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

@ -0,0 +1 @@
ae923df3beea84e23568f73b961f21d5e602432f

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net7.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Global
build_property.ProjectDir = C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\

@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

@ -0,0 +1,12 @@
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\bin\Debug\net7.0\Global.deps.json
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\bin\Debug\net7.0\Global.dll
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\bin\Debug\net7.0\Global.pdb
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Global.csproj.AssemblyReference.cache
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Global.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Global.AssemblyInfoInputs.cache
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Global.AssemblyInfo.cs
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Global.csproj.CoreCompileInputs.cache
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Global.dll
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\refint\Global.dll
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Global.pdb
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\ref\Global.dll

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Logica")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Logica")]
[assembly: System.Reflection.AssemblyTitleAttribute("Logica")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

@ -0,0 +1 @@
559139bcad75bc699883210d21815f3a7b66c208

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net7.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Logica
build_property.ProjectDir = C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\

@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

@ -0,0 +1,12 @@
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\bin\Debug\net7.0\Logica.deps.json
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\bin\Debug\net7.0\Logica.dll
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\bin\Debug\net7.0\Logica.pdb
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Logica.csproj.AssemblyReference.cache
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Logica.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Logica.AssemblyInfoInputs.cache
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Logica.AssemblyInfo.cs
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Logica.csproj.CoreCompileInputs.cache
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Logica.dll
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\refint\Logica.dll
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\Logica.pdb
C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\Logica\obj\Debug\net7.0\ref\Logica.dll

@ -0,0 +1,63 @@
{
"format": 1,
"restore": {
"C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Global.csproj": {}
},
"projects": {
"C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Global.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Global.csproj",
"projectName": "Global",
"projectPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Global.csproj",
"packagesPath": "C:\\Users\\ruben\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\ruben\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
}
}
}
}
}

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\ruben\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\ruben\.nuget\packages\" />
</ItemGroup>
</Project>

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

@ -0,0 +1,63 @@
{
"format": 1,
"restore": {
"C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Logica.csproj": {}
},
"projects": {
"C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Logica.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Logica.csproj",
"projectName": "Logica",
"projectPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Logica.csproj",
"packagesPath": "C:\\Users\\ruben\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\ruben\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
}
}
}
}
}

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\ruben\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\ruben\.nuget\packages\" />
</ItemGroup>
</Project>

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

@ -0,0 +1,68 @@
{
"version": 3,
"targets": {
"net7.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net7.0": []
},
"packageFolders": {
"C:\\Users\\ruben\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Global.csproj",
"projectName": "Global",
"projectPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Global.csproj",
"packagesPath": "C:\\Users\\ruben\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\ruben\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
}
}
}
}

@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "wtvXx8L876Dl4zi7Vkb7x2GW9w6yg+7IgGMzvezAyC8HkiO2sjeFGKKpAQqoYIqAbKSQa6p8Q5kaygKJfoFYbQ==",
"success": true,
"projectFilePath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\Logica\\Global.csproj",
"expectedPackageFiles": [],
"logs": []
}

@ -0,0 +1,5 @@
namespace test {
public class Class1 {
}
}

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("test")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("test")]
[assembly: System.Reflection.AssemblyTitleAttribute("test")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

@ -0,0 +1 @@
a987eb0675210088860249537ec979b0010c987d

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net7.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = test
build_property.ProjectDir = C:\Users\ruben\source\repos\2324-ap-rubenschoonbaert\Doolhof\test\

@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

@ -0,0 +1,68 @@
{
"version": 3,
"targets": {
"net7.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net7.0": []
},
"packageFolders": {
"C:\\Users\\ruben\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\test.csproj",
"projectName": "test",
"projectPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\test.csproj",
"packagesPath": "C:\\Users\\ruben\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\ruben\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
}
}
}
}

@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "HF0AfmuW/PfzXeV47aZYK9TeONHaFV2vc5bZjChB2AxkrVyCJ2/jwue/zD5ErHU1Z1/OXjHhhLiRPPAsxYOb1g==",
"success": true,
"projectFilePath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\test.csproj",
"expectedPackageFiles": [],
"logs": []
}

@ -0,0 +1,63 @@
{
"format": 1,
"restore": {
"C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\test.csproj": {}
},
"projects": {
"C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\test.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\test.csproj",
"projectName": "test",
"projectPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\test.csproj",
"packagesPath": "C:\\Users\\ruben\\.nuget\\packages\\",
"outputPath": "C:\\Users\\ruben\\source\\repos\\2324-ap-rubenschoonbaert\\Doolhof\\test\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\ruben\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
}
}
}
}
}

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\ruben\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\ruben\.nuget\packages\" />
</ItemGroup>
</Project>

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
Loading…
Cancel
Save