From 2a0e652ec7fbf337f608d6c392228da44c74d788 Mon Sep 17 00:00:00 2001 From: ou-yongtong Date: Fri, 24 Oct 2025 15:51:48 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=97=E3=83=AD=E3=82=B8=E3=82=A7=E3=82=AF?= =?UTF-8?q?=E3=83=88=20=E3=83=95=E3=82=A1=E3=82=A4=E3=83=AB=E3=82=92?= =?UTF-8?q?=E8=BF=BD=E5=8A=A0=E3=81=97=E3=81=BE=E3=81=99=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FY2526-SW-PoC-APIRelay.sln | 25 +++++++++++++++++++ .../FY2526-SW-PoC-APIRelay.csproj | 11 ++++++++ FY2526-SW-PoC-APIRelay/Program.cs | 2 ++ 3 files changed, 38 insertions(+) create mode 100644 FY2526-SW-PoC-APIRelay.sln create mode 100644 FY2526-SW-PoC-APIRelay/FY2526-SW-PoC-APIRelay.csproj create mode 100644 FY2526-SW-PoC-APIRelay/Program.cs diff --git a/FY2526-SW-PoC-APIRelay.sln b/FY2526-SW-PoC-APIRelay.sln new file mode 100644 index 0000000..e6c3d56 --- /dev/null +++ b/FY2526-SW-PoC-APIRelay.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.36603.0 d17.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FY2526-SW-PoC-APIRelay", "FY2526-SW-PoC-APIRelay\FY2526-SW-PoC-APIRelay.csproj", "{17F82B0E-3680-419D-A68C-C1CB716528C6}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {17F82B0E-3680-419D-A68C-C1CB716528C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {17F82B0E-3680-419D-A68C-C1CB716528C6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {17F82B0E-3680-419D-A68C-C1CB716528C6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {17F82B0E-3680-419D-A68C-C1CB716528C6}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {A07BF1CC-3E58-4E19-A10B-90D528881F6A} + EndGlobalSection +EndGlobal diff --git a/FY2526-SW-PoC-APIRelay/FY2526-SW-PoC-APIRelay.csproj b/FY2526-SW-PoC-APIRelay/FY2526-SW-PoC-APIRelay.csproj new file mode 100644 index 0000000..acbd741 --- /dev/null +++ b/FY2526-SW-PoC-APIRelay/FY2526-SW-PoC-APIRelay.csproj @@ -0,0 +1,11 @@ + + + + Exe + net8.0 + FY2526_SW_PoC_APIRelay + enable + enable + + + diff --git a/FY2526-SW-PoC-APIRelay/Program.cs b/FY2526-SW-PoC-APIRelay/Program.cs new file mode 100644 index 0000000..3751555 --- /dev/null +++ b/FY2526-SW-PoC-APIRelay/Program.cs @@ -0,0 +1,2 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!");