Executable Console

This commit is contained in:
C9Glax 2022-05-05 02:00:38 +02:00
parent 69ed5e35e7
commit 0e4faef6a4
40 changed files with 498 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\astar\astar.csproj" />
</ItemGroup>
</Project>

1
Executable/Program.cs Normal file
View File

@ -0,0 +1 @@
new astar.Astar();

View File

@ -0,0 +1,49 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"Executable/1.0.0": {
"dependencies": {
"astar": "1.0.0"
},
"runtime": {
"Executable.dll": {}
}
},
"astar/1.0.0": {
"dependencies": {
"Logging": "1.0.0"
},
"runtime": {
"astar.dll": {}
}
},
"Logging/1.0.0": {
"runtime": {
"Logging.dll": {}
}
}
}
},
"libraries": {
"Executable/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"astar/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Logging/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

View File

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Executable")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Executable")]
[assembly: System.Reflection.AssemblyTitleAttribute("Executable")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@ -0,0 +1 @@
411c0b3cf056e23504afaa80bf4ab210c078397f

View File

@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Executable
build_property.ProjectDir = D:\Documents\GitHub\astar\Executable\

View File

@ -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;

Binary file not shown.

View File

@ -0,0 +1 @@
9018d5218bad22b9f7d1df8dd8c7130271a4826d

View File

@ -0,0 +1,20 @@
D:\Documents\GitHub\astar\Executable\bin\Debug\net6.0\Executable.exe
D:\Documents\GitHub\astar\Executable\bin\Debug\net6.0\Executable.deps.json
D:\Documents\GitHub\astar\Executable\bin\Debug\net6.0\Executable.runtimeconfig.json
D:\Documents\GitHub\astar\Executable\bin\Debug\net6.0\Executable.dll
D:\Documents\GitHub\astar\Executable\bin\Debug\net6.0\Executable.pdb
D:\Documents\GitHub\astar\Executable\bin\Debug\net6.0\astar.dll
D:\Documents\GitHub\astar\Executable\bin\Debug\net6.0\Logging.dll
D:\Documents\GitHub\astar\Executable\bin\Debug\net6.0\astar.pdb
D:\Documents\GitHub\astar\Executable\bin\Debug\net6.0\Logging.pdb
D:\Documents\GitHub\astar\Executable\obj\Debug\net6.0\Executable.csproj.AssemblyReference.cache
D:\Documents\GitHub\astar\Executable\obj\Debug\net6.0\Executable.GeneratedMSBuildEditorConfig.editorconfig
D:\Documents\GitHub\astar\Executable\obj\Debug\net6.0\Executable.AssemblyInfoInputs.cache
D:\Documents\GitHub\astar\Executable\obj\Debug\net6.0\Executable.AssemblyInfo.cs
D:\Documents\GitHub\astar\Executable\obj\Debug\net6.0\Executable.csproj.CoreCompileInputs.cache
D:\Documents\GitHub\astar\Executable\obj\Debug\net6.0\Executable.csproj.CopyComplete
D:\Documents\GitHub\astar\Executable\obj\Debug\net6.0\Executable.dll
D:\Documents\GitHub\astar\Executable\obj\Debug\net6.0\refint\Executable.dll
D:\Documents\GitHub\astar\Executable\obj\Debug\net6.0\Executable.pdb
D:\Documents\GitHub\astar\Executable\obj\Debug\net6.0\Executable.genruntimeconfig.cache
D:\Documents\GitHub\astar\Executable\obj\Debug\net6.0\ref\Executable.dll

Binary file not shown.

View File

@ -0,0 +1 @@
f3ac9241a0da40b70a9072ad5a06f05cba0bd786

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,178 @@
{
"format": 1,
"restore": {
"D:\\Documents\\GitHub\\astar\\Executable\\Executable.csproj": {}
},
"projects": {
"D:\\Documents\\GitHub\\astar\\astar\\astar.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Documents\\GitHub\\astar\\astar\\astar.csproj",
"projectName": "astar",
"projectPath": "D:\\Documents\\GitHub\\astar\\astar\\astar.csproj",
"packagesPath": "C:\\Users\\glax\\.nuget\\packages\\",
"outputPath": "D:\\Documents\\GitHub\\astar\\astar\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\glax\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"D:\\Documents\\GitHub\\astar\\Logging\\Logging.csproj": {
"projectPath": "D:\\Documents\\GitHub\\astar\\Logging\\Logging.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
}
}
},
"D:\\Documents\\GitHub\\astar\\Executable\\Executable.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Documents\\GitHub\\astar\\Executable\\Executable.csproj",
"projectName": "Executable",
"projectPath": "D:\\Documents\\GitHub\\astar\\Executable\\Executable.csproj",
"packagesPath": "C:\\Users\\glax\\.nuget\\packages\\",
"outputPath": "D:\\Documents\\GitHub\\astar\\Executable\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\glax\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"D:\\Documents\\GitHub\\astar\\astar\\astar.csproj": {
"projectPath": "D:\\Documents\\GitHub\\astar\\astar\\astar.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
}
}
},
"D:\\Documents\\GitHub\\astar\\Logging\\Logging.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Documents\\GitHub\\astar\\Logging\\Logging.csproj",
"projectName": "Logging",
"projectPath": "D:\\Documents\\GitHub\\astar\\Logging\\Logging.csproj",
"packagesPath": "C:\\Users\\glax\\.nuget\\packages\\",
"outputPath": "D:\\Documents\\GitHub\\astar\\Logging\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\glax\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@ -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\glax\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\glax\.nuget\packages\" />
</ItemGroup>
</Project>

View File

@ -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" />

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

View File

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Executable")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Executable")]
[assembly: System.Reflection.AssemblyTitleAttribute("Executable")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@ -0,0 +1 @@
27164742bc5b9f7994ee4a5cf658f35ff6896546

View File

@ -0,0 +1,10 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Executable
build_property.ProjectDir = D:\Documents\GitHub\astar\Executable\

View File

@ -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;

Binary file not shown.

View File

@ -0,0 +1,108 @@
{
"version": 3,
"targets": {
"net6.0": {
"astar/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"dependencies": {
"Logging": "1.0.0"
},
"compile": {
"bin/placeholder/astar.dll": {}
},
"runtime": {
"bin/placeholder/astar.dll": {}
}
},
"Logging/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"compile": {
"bin/placeholder/Logging.dll": {}
},
"runtime": {
"bin/placeholder/Logging.dll": {}
}
}
}
},
"libraries": {
"astar/1.0.0": {
"type": "project",
"path": "../astar/astar.csproj",
"msbuildProject": "../astar/astar.csproj"
},
"Logging/1.0.0": {
"type": "project",
"path": "../Logging/Logging.csproj",
"msbuildProject": "../Logging/Logging.csproj"
}
},
"projectFileDependencyGroups": {
"net6.0": [
"astar >= 1.0.0"
]
},
"packageFolders": {
"C:\\Users\\glax\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Documents\\GitHub\\astar\\Executable\\Executable.csproj",
"projectName": "Executable",
"projectPath": "D:\\Documents\\GitHub\\astar\\Executable\\Executable.csproj",
"packagesPath": "C:\\Users\\glax\\.nuget\\packages\\",
"outputPath": "D:\\Documents\\GitHub\\astar\\Executable\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\glax\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"D:\\Documents\\GitHub\\astar\\astar\\astar.csproj": {
"projectPath": "D:\\Documents\\GitHub\\astar\\astar\\astar.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
}
}
}
}

View File

@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "FRifvxrPsEEd9bXIm7NWnKpINBpUjBApgndHkggpx4+WeviqDj5gqsnb3DBzlLSW9lbwly2Yn+ySJjVHPUUkrg==",
"success": true,
"projectFilePath": "D:\\Documents\\GitHub\\astar\\Executable\\Executable.csproj",
"expectedPackageFiles": [],
"logs": []
}