commit 0e59127159d13d8d540d416c3ef5d2d7d13d5d04 Author: Mikhail Shahovalov Date: Fri May 9 12:31:40 2025 +0300 init diff --git a/.idea/.idea.YandexGPT/.idea/encodings.xml b/.idea/.idea.YandexGPT/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.YandexGPT/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/YandexGPT.CLI/Program.cs b/YandexGPT.CLI/Program.cs new file mode 100644 index 0000000..e5dff12 --- /dev/null +++ b/YandexGPT.CLI/Program.cs @@ -0,0 +1,3 @@ +// See https://aka.ms/new-console-template for more information + +Console.WriteLine("Hello, World!"); \ No newline at end of file diff --git a/YandexGPT.CLI/YandexGPT.CLI.csproj b/YandexGPT.CLI/YandexGPT.CLI.csproj new file mode 100644 index 0000000..2f4fc77 --- /dev/null +++ b/YandexGPT.CLI/YandexGPT.CLI.csproj @@ -0,0 +1,10 @@ + + + + Exe + net8.0 + enable + enable + + + diff --git a/YandexGPT.sln b/YandexGPT.sln new file mode 100644 index 0000000..7bae5b4 --- /dev/null +++ b/YandexGPT.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "YandexGPT.CLI", "YandexGPT.CLI\YandexGPT.CLI.csproj", "{CEA4F333-8EF7-455D-B346-E2D381BDF360}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CEA4F333-8EF7-455D-B346-E2D381BDF360}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CEA4F333-8EF7-455D-B346-E2D381BDF360}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CEA4F333-8EF7-455D-B346-E2D381BDF360}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CEA4F333-8EF7-455D-B346-E2D381BDF360}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/global.json b/global.json new file mode 100644 index 0000000..2ddda36 --- /dev/null +++ b/global.json @@ -0,0 +1,7 @@ +{ + "sdk": { + "version": "8.0.0", + "rollForward": "latestMinor", + "allowPrerelease": false + } +} \ No newline at end of file