From 84d38e3a74b6b046440fa00c10341ad6835cdfbe Mon Sep 17 00:00:00 2001
From: Duc Long Hoang <duclong@students.zcu.cz>
Date: Mon, 11 Mar 2024 08:38:08 +0100
Subject: [PATCH 1/6] test commit

---
 .gitignore                                    |   1 +
 FAVgorithm.sln                                |  25 ++++++
 Interpreter/Interpreter.csproj                |  10 +++
 Interpreter/Program.cs                        |  10 +++
 ...CoreApp,Version=v8.0.AssemblyAttributes.cs |   4 +
 .../Debug/net8.0/Interpreter.AssemblyInfo.cs  |  23 ++++++
 .../Interpreter.AssemblyInfoInputs.cache      |   1 +
 ....GeneratedMSBuildEditorConfig.editorconfig |  13 ++++
 .../net8.0/Interpreter.GlobalUsings.g.cs      |   8 ++
 .../obj/Debug/net8.0/Interpreter.assets.cache | Bin 0 -> 161 bytes
 .../obj/Interpreter.csproj.nuget.dgspec.json  |  68 ++++++++++++++++
 .../obj/Interpreter.csproj.nuget.g.props      |  15 ++++
 .../obj/Interpreter.csproj.nuget.g.targets    |   2 +
 ...CoreApp,Version=v8.0.AssemblyAttributes.cs |   4 +
 .../net8.0/Interpreter.AssemblyInfo.cs        |  23 ++++++
 .../Interpreter.AssemblyInfoInputs.cache      |   1 +
 ....GeneratedMSBuildEditorConfig.editorconfig |  13 ++++
 .../net8.0/Interpreter.GlobalUsings.g.cs      |   8 ++
 .../Release/net8.0/Interpreter.assets.cache   | Bin 0 -> 161 bytes
 Interpreter/obj/project.assets.json           |  73 ++++++++++++++++++
 Interpreter/obj/project.nuget.cache           |   8 ++
 21 files changed, 310 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 FAVgorithm.sln
 create mode 100644 Interpreter/Interpreter.csproj
 create mode 100644 Interpreter/Program.cs
 create mode 100644 Interpreter/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
 create mode 100644 Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfo.cs
 create mode 100644 Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfoInputs.cache
 create mode 100644 Interpreter/obj/Debug/net8.0/Interpreter.GeneratedMSBuildEditorConfig.editorconfig
 create mode 100644 Interpreter/obj/Debug/net8.0/Interpreter.GlobalUsings.g.cs
 create mode 100644 Interpreter/obj/Debug/net8.0/Interpreter.assets.cache
 create mode 100644 Interpreter/obj/Interpreter.csproj.nuget.dgspec.json
 create mode 100644 Interpreter/obj/Interpreter.csproj.nuget.g.props
 create mode 100644 Interpreter/obj/Interpreter.csproj.nuget.g.targets
 create mode 100644 Interpreter/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
 create mode 100644 Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfo.cs
 create mode 100644 Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfoInputs.cache
 create mode 100644 Interpreter/obj/Release/net8.0/Interpreter.GeneratedMSBuildEditorConfig.editorconfig
 create mode 100644 Interpreter/obj/Release/net8.0/Interpreter.GlobalUsings.g.cs
 create mode 100644 Interpreter/obj/Release/net8.0/Interpreter.assets.cache
 create mode 100644 Interpreter/obj/project.assets.json
 create mode 100644 Interpreter/obj/project.nuget.cache

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a4d6d9c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+.vs/
\ No newline at end of file
diff --git a/FAVgorithm.sln b/FAVgorithm.sln
new file mode 100644
index 0000000..06ee7db
--- /dev/null
+++ b/FAVgorithm.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.9.34622.214
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Interpreter", "Interpreter\Interpreter.csproj", "{BCC01BC1-AAF9-4B3C-899C-4B04036D9F78}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Release|Any CPU = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{BCC01BC1-AAF9-4B3C-899C-4B04036D9F78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{BCC01BC1-AAF9-4B3C-899C-4B04036D9F78}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{BCC01BC1-AAF9-4B3C-899C-4B04036D9F78}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{BCC01BC1-AAF9-4B3C-899C-4B04036D9F78}.Release|Any CPU.Build.0 = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+	GlobalSection(ExtensibilityGlobals) = postSolution
+		SolutionGuid = {4326776A-C3E6-44BB-A228-14207522DB78}
+	EndGlobalSection
+EndGlobal
diff --git a/Interpreter/Interpreter.csproj b/Interpreter/Interpreter.csproj
new file mode 100644
index 0000000..2150e37
--- /dev/null
+++ b/Interpreter/Interpreter.csproj
@@ -0,0 +1,10 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+  <PropertyGroup>
+    <OutputType>Exe</OutputType>
+    <TargetFramework>net8.0</TargetFramework>
+    <ImplicitUsings>enable</ImplicitUsings>
+    <Nullable>enable</Nullable>
+  </PropertyGroup>
+
+</Project>
diff --git a/Interpreter/Program.cs b/Interpreter/Program.cs
new file mode 100644
index 0000000..c9fcd6b
--- /dev/null
+++ b/Interpreter/Program.cs
@@ -0,0 +1,10 @@
+namespace Interpreter
+{
+    internal class Program
+    {
+        static void Main(string[] args)
+        {
+            Console.WriteLine("Hello, World!");
+        }
+    }
+}
diff --git a/Interpreter/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Interpreter/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..2217181
--- /dev/null
+++ b/Interpreter/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+// <autogenerated />
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfo.cs b/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfo.cs
new file mode 100644
index 0000000..123dc14
--- /dev/null
+++ b/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfo.cs
@@ -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("Interpreter")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Interpreter")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Interpreter")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfoInputs.cache b/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..0244e7c
--- /dev/null
+++ b/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+6df4ce982ae54ab18b813179cb755cfdf3d174677de47b721996e967b9f07f4d
diff --git a/Interpreter/obj/Debug/net8.0/Interpreter.GeneratedMSBuildEditorConfig.editorconfig b/Interpreter/obj/Debug/net8.0/Interpreter.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..86e1570
--- /dev/null
+++ b/Interpreter/obj/Debug/net8.0/Interpreter.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,13 @@
+is_global = true
+build_property.TargetFramework = net8.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 = Interpreter
+build_property.ProjectDir = S:\Projects\FAVgorithm\Interpreter\
+build_property.EnableComHosting = 
+build_property.EnableGeneratedComInterfaceComImportInterop = 
diff --git a/Interpreter/obj/Debug/net8.0/Interpreter.GlobalUsings.g.cs b/Interpreter/obj/Debug/net8.0/Interpreter.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/Interpreter/obj/Debug/net8.0/Interpreter.GlobalUsings.g.cs
@@ -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;
diff --git a/Interpreter/obj/Debug/net8.0/Interpreter.assets.cache b/Interpreter/obj/Debug/net8.0/Interpreter.assets.cache
new file mode 100644
index 0000000000000000000000000000000000000000..5fc80d63b6ba15e1d906933a38e13d981efb68e8
GIT binary patch
literal 161
zcmWIWc6a1qU|^X4RF6-6ecU&-XCg;!rp=tP(?as;;`)rfhd!mZf{)gE%>}9<7BB)8
wYB*cPgche3700-gCM)>l=cOxn<R|8($LQsirl*#~6eK2RC#I(s#}G0U0K7jS>Hq)$

literal 0
HcmV?d00001

diff --git a/Interpreter/obj/Interpreter.csproj.nuget.dgspec.json b/Interpreter/obj/Interpreter.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..27f7925
--- /dev/null
+++ b/Interpreter/obj/Interpreter.csproj.nuget.dgspec.json
@@ -0,0 +1,68 @@
+{
+  "format": 1,
+  "restore": {
+    "S:\\Projects\\FAVgorithm\\Interpreter\\Interpreter.csproj": {}
+  },
+  "projects": {
+    "S:\\Projects\\FAVgorithm\\Interpreter\\Interpreter.csproj": {
+      "version": "1.0.0",
+      "restore": {
+        "projectUniqueName": "S:\\Projects\\FAVgorithm\\Interpreter\\Interpreter.csproj",
+        "projectName": "Interpreter",
+        "projectPath": "S:\\Projects\\FAVgorithm\\Interpreter\\Interpreter.csproj",
+        "packagesPath": "C:\\Users\\Duc Long Hoang\\.nuget\\packages\\",
+        "outputPath": "S:\\Projects\\FAVgorithm\\Interpreter\\obj\\",
+        "projectStyle": "PackageReference",
+        "configFilePaths": [
+          "C:\\Users\\Duc Long Hoang\\AppData\\Roaming\\NuGet\\NuGet.Config",
+          "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+        ],
+        "originalTargetFrameworks": [
+          "net8.0"
+        ],
+        "sources": {
+          "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+          "https://api.nuget.org/v3/index.json": {}
+        },
+        "frameworks": {
+          "net8.0": {
+            "targetAlias": "net8.0",
+            "projectReferences": {}
+          }
+        },
+        "warningProperties": {
+          "warnAsError": [
+            "NU1605"
+          ]
+        },
+        "restoreAuditProperties": {
+          "enableAudit": "true",
+          "auditLevel": "low",
+          "auditMode": "direct"
+        }
+      },
+      "frameworks": {
+        "net8.0": {
+          "targetAlias": "net8.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\\8.0.200/PortableRuntimeIdentifierGraph.json"
+        }
+      }
+    }
+  }
+}
\ No newline at end of file
diff --git a/Interpreter/obj/Interpreter.csproj.nuget.g.props b/Interpreter/obj/Interpreter.csproj.nuget.g.props
new file mode 100644
index 0000000..a74889f
--- /dev/null
+++ b/Interpreter/obj/Interpreter.csproj.nuget.g.props
@@ -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\Duc Long Hoang\.nuget\packages\</NuGetPackageFolders>
+    <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
+    <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.9.1</NuGetToolVersion>
+  </PropertyGroup>
+  <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
+    <SourceRoot Include="C:\Users\Duc Long Hoang\.nuget\packages\" />
+  </ItemGroup>
+</Project>
\ No newline at end of file
diff --git a/Interpreter/obj/Interpreter.csproj.nuget.g.targets b/Interpreter/obj/Interpreter.csproj.nuget.g.targets
new file mode 100644
index 0000000..3dc06ef
--- /dev/null
+++ b/Interpreter/obj/Interpreter.csproj.nuget.g.targets
@@ -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" />
\ No newline at end of file
diff --git a/Interpreter/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Interpreter/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..2217181
--- /dev/null
+++ b/Interpreter/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+// <autogenerated />
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfo.cs b/Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfo.cs
new file mode 100644
index 0000000..9fe1391
--- /dev/null
+++ b/Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfo.cs
@@ -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("Interpreter")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Interpreter")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Interpreter")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfoInputs.cache b/Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..461b10b
--- /dev/null
+++ b/Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+d2c8d559d25fb82d4f399e0c0339a2c0a28dd877f8ed21f89ebd4d3246d52a47
diff --git a/Interpreter/obj/Release/net8.0/Interpreter.GeneratedMSBuildEditorConfig.editorconfig b/Interpreter/obj/Release/net8.0/Interpreter.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..86e1570
--- /dev/null
+++ b/Interpreter/obj/Release/net8.0/Interpreter.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,13 @@
+is_global = true
+build_property.TargetFramework = net8.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 = Interpreter
+build_property.ProjectDir = S:\Projects\FAVgorithm\Interpreter\
+build_property.EnableComHosting = 
+build_property.EnableGeneratedComInterfaceComImportInterop = 
diff --git a/Interpreter/obj/Release/net8.0/Interpreter.GlobalUsings.g.cs b/Interpreter/obj/Release/net8.0/Interpreter.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/Interpreter/obj/Release/net8.0/Interpreter.GlobalUsings.g.cs
@@ -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;
diff --git a/Interpreter/obj/Release/net8.0/Interpreter.assets.cache b/Interpreter/obj/Release/net8.0/Interpreter.assets.cache
new file mode 100644
index 0000000000000000000000000000000000000000..befe46f33bde9e1f6ad564bf724ab383165e8b23
GIT binary patch
literal 161
zcmWIWc6a1qU|{eyneRX6&><&V@%a-BKc!k^GvwVny?0A8+wa)=4~<Dr<^t6a3mAb4
wHJq(tLW@(2iep?#lNEgO^U@VO@)PsYWAyS$(^E@g3KEmE6Vp?RV+a`v0F(|OxBvhE

literal 0
HcmV?d00001

diff --git a/Interpreter/obj/project.assets.json b/Interpreter/obj/project.assets.json
new file mode 100644
index 0000000..e95bdc2
--- /dev/null
+++ b/Interpreter/obj/project.assets.json
@@ -0,0 +1,73 @@
+{
+  "version": 3,
+  "targets": {
+    "net8.0": {}
+  },
+  "libraries": {},
+  "projectFileDependencyGroups": {
+    "net8.0": []
+  },
+  "packageFolders": {
+    "C:\\Users\\Duc Long Hoang\\.nuget\\packages\\": {}
+  },
+  "project": {
+    "version": "1.0.0",
+    "restore": {
+      "projectUniqueName": "S:\\Projects\\FAVgorithm\\Interpreter\\Interpreter.csproj",
+      "projectName": "Interpreter",
+      "projectPath": "S:\\Projects\\FAVgorithm\\Interpreter\\Interpreter.csproj",
+      "packagesPath": "C:\\Users\\Duc Long Hoang\\.nuget\\packages\\",
+      "outputPath": "S:\\Projects\\FAVgorithm\\Interpreter\\obj\\",
+      "projectStyle": "PackageReference",
+      "configFilePaths": [
+        "C:\\Users\\Duc Long Hoang\\AppData\\Roaming\\NuGet\\NuGet.Config",
+        "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+      ],
+      "originalTargetFrameworks": [
+        "net8.0"
+      ],
+      "sources": {
+        "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+        "https://api.nuget.org/v3/index.json": {}
+      },
+      "frameworks": {
+        "net8.0": {
+          "targetAlias": "net8.0",
+          "projectReferences": {}
+        }
+      },
+      "warningProperties": {
+        "warnAsError": [
+          "NU1605"
+        ]
+      },
+      "restoreAuditProperties": {
+        "enableAudit": "true",
+        "auditLevel": "low",
+        "auditMode": "direct"
+      }
+    },
+    "frameworks": {
+      "net8.0": {
+        "targetAlias": "net8.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\\8.0.200/PortableRuntimeIdentifierGraph.json"
+      }
+    }
+  }
+}
\ No newline at end of file
diff --git a/Interpreter/obj/project.nuget.cache b/Interpreter/obj/project.nuget.cache
new file mode 100644
index 0000000..6daa0c3
--- /dev/null
+++ b/Interpreter/obj/project.nuget.cache
@@ -0,0 +1,8 @@
+{
+  "version": 2,
+  "dgSpecHash": "N7MaD+j9UYuS/VD/TWjwxlqLl5WucW2iQXNjR9roEUpSo23q4cUDyPBE1YXpoqFGJhinjf4UKQ3Is6PGDJ+oJQ==",
+  "success": true,
+  "projectFilePath": "S:\\Projects\\FAVgorithm\\Interpreter\\Interpreter.csproj",
+  "expectedPackageFiles": [],
+  "logs": []
+}
\ No newline at end of file
-- 
GitLab


From 72bde6821caaed6f5478859245bd339eec866e7f Mon Sep 17 00:00:00 2001
From: Duc Long Hoang <duclong@students.zcu.cz>
Date: Mon, 11 Mar 2024 10:36:46 +0100
Subject: [PATCH 2/6] test commit

---
 Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfo.cs        | 2 +-
 .../obj/Debug/net8.0/Interpreter.AssemblyInfoInputs.cache       | 2 +-
 Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfo.cs      | 2 +-
 .../obj/Release/net8.0/Interpreter.AssemblyInfoInputs.cache     | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfo.cs b/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfo.cs
index 123dc14..ae0f172 100644
--- a/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfo.cs
+++ b/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfo.cs
@@ -14,7 +14,7 @@ using System.Reflection;
 [assembly: System.Reflection.AssemblyCompanyAttribute("Interpreter")]
 [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
 [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+84d38e3a74b6b046440fa00c10341ad6835cdfbe")]
 [assembly: System.Reflection.AssemblyProductAttribute("Interpreter")]
 [assembly: System.Reflection.AssemblyTitleAttribute("Interpreter")]
 [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfoInputs.cache b/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfoInputs.cache
index 0244e7c..a340dc3 100644
--- a/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfoInputs.cache
+++ b/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfoInputs.cache
@@ -1 +1 @@
-6df4ce982ae54ab18b813179cb755cfdf3d174677de47b721996e967b9f07f4d
+7e3a24ffbf12749ea72c73aeaff677942b766f81675774dc34d39d9e9eabcc4a
diff --git a/Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfo.cs b/Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfo.cs
index 9fe1391..a358103 100644
--- a/Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfo.cs
+++ b/Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfo.cs
@@ -14,7 +14,7 @@ using System.Reflection;
 [assembly: System.Reflection.AssemblyCompanyAttribute("Interpreter")]
 [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
 [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+84d38e3a74b6b046440fa00c10341ad6835cdfbe")]
 [assembly: System.Reflection.AssemblyProductAttribute("Interpreter")]
 [assembly: System.Reflection.AssemblyTitleAttribute("Interpreter")]
 [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfoInputs.cache b/Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfoInputs.cache
index 461b10b..94bc249 100644
--- a/Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfoInputs.cache
+++ b/Interpreter/obj/Release/net8.0/Interpreter.AssemblyInfoInputs.cache
@@ -1 +1 @@
-d2c8d559d25fb82d4f399e0c0339a2c0a28dd877f8ed21f89ebd4d3246d52a47
+97346af06f48ceb06f7aeda91324fa1489a6e7caf7b07b42663e65fafe55e922
-- 
GitLab


From 1f7d54888a85b4a8ce7a9ee8d603bc761c53e84e Mon Sep 17 00:00:00 2001
From: Duc Long Hoang <duclong@students.zcu.cz>
Date: Mon, 11 Mar 2024 10:48:06 +0100
Subject: [PATCH 3/6] re #11064 @2h30 - added comment

---
 Interpreter/Program.cs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Interpreter/Program.cs b/Interpreter/Program.cs
index c9fcd6b..ffd6367 100644
--- a/Interpreter/Program.cs
+++ b/Interpreter/Program.cs
@@ -4,6 +4,7 @@
     {
         static void Main(string[] args)
         {
+            // commit with a comment
             Console.WriteLine("Hello, World!");
         }
     }
-- 
GitLab


From 6b90079088af8e4fe5ed1507efa19b7bc853a498 Mon Sep 17 00:00:00 2001
From: Duc Long Hoang <duclong@students.zcu.cz>
Date: Mon, 11 Mar 2024 10:51:32 +0100
Subject: [PATCH 4/6] #11064 @0.01 - added 2nd comment, will this link?

---
 Interpreter/Program.cs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Interpreter/Program.cs b/Interpreter/Program.cs
index ffd6367..9136097 100644
--- a/Interpreter/Program.cs
+++ b/Interpreter/Program.cs
@@ -5,6 +5,7 @@
         static void Main(string[] args)
         {
             // commit with a comment
+            // commit add 2nd comment
             Console.WriteLine("Hello, World!");
         }
     }
-- 
GitLab


From 56a5540c6228da147bcb3989e4301d3fdf7f6523 Mon Sep 17 00:00:00 2001
From: Duc Long Hoang <duclong@students.zcu.cz>
Date: Mon, 11 Mar 2024 10:54:27 +0100
Subject: [PATCH 5/6] re #11064 @0.01 - added 3rd comment, this will link for
 sure?

---
 Interpreter/Program.cs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Interpreter/Program.cs b/Interpreter/Program.cs
index 9136097..e120f9a 100644
--- a/Interpreter/Program.cs
+++ b/Interpreter/Program.cs
@@ -6,6 +6,7 @@
         {
             // commit with a comment
             // commit add 2nd comment
+            // commit add 3rd comment
             Console.WriteLine("Hello, World!");
         }
     }
-- 
GitLab


From a24070ce53eb0a5150719515e03bfd1f7e03f8b2 Mon Sep 17 00:00:00 2001
From: Duc Long Hoang <duclong@students.zcu.cz>
Date: Mon, 11 Mar 2024 18:14:07 +0100
Subject: [PATCH 6/6] re #11064 @0h02 - commit message

---
 Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfo.cs        | 2 +-
 .../obj/Debug/net8.0/Interpreter.AssemblyInfoInputs.cache       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfo.cs b/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfo.cs
index ae0f172..65a1e5d 100644
--- a/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfo.cs
+++ b/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfo.cs
@@ -14,7 +14,7 @@ using System.Reflection;
 [assembly: System.Reflection.AssemblyCompanyAttribute("Interpreter")]
 [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
 [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+84d38e3a74b6b046440fa00c10341ad6835cdfbe")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+56a5540c6228da147bcb3989e4301d3fdf7f6523")]
 [assembly: System.Reflection.AssemblyProductAttribute("Interpreter")]
 [assembly: System.Reflection.AssemblyTitleAttribute("Interpreter")]
 [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfoInputs.cache b/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfoInputs.cache
index a340dc3..000fd18 100644
--- a/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfoInputs.cache
+++ b/Interpreter/obj/Debug/net8.0/Interpreter.AssemblyInfoInputs.cache
@@ -1 +1 @@
-7e3a24ffbf12749ea72c73aeaff677942b766f81675774dc34d39d9e9eabcc4a
+0058e47fe68e45095f138138b8c72de8e604298a20063f76ca6cbc371e59e40c
-- 
GitLab