From 8b26437efe3d7478913a1d79bc34e341f8a57ea6 Mon Sep 17 00:00:00 2001 From: Hamdaan Khalid Date: Tue, 21 Jan 2025 11:58:51 -0800 Subject: [PATCH] Move code to samples dir --- Garnet.sln | 4 ++-- {playground => samples}/ETag/Caching.cs | 0 {playground => samples}/ETag/ETag.csproj | 0 {playground => samples}/ETag/EtagAbstractions.cs | 0 {playground => samples}/ETag/OccSimulation.cs | 2 +- {playground => samples}/ETag/Program.cs | 0 6 files changed, 3 insertions(+), 3 deletions(-) rename {playground => samples}/ETag/Caching.cs (100%) rename {playground => samples}/ETag/ETag.csproj (100%) rename {playground => samples}/ETag/EtagAbstractions.cs (100%) rename {playground => samples}/ETag/OccSimulation.cs (99%) rename {playground => samples}/ETag/Program.cs (100%) diff --git a/Garnet.sln b/Garnet.sln index cdb5aa6472..e0cffb087b 100644 --- a/Garnet.sln +++ b/Garnet.sln @@ -111,7 +111,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Garnet.resources", "libs\re EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NoOpModule", "playground\NoOpModule\NoOpModule.csproj", "{D4C9A1A0-7053-F072-21F5-4E0C5827136D}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ETag", "playground\ETag\ETag.csproj", "{4FBA1587-BAFC-49F8-803A-D1CF431A26F5}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ETag", "samples\ETag\ETag.csproj", "{4FBA1587-BAFC-49F8-803A-D1CF431A26F5}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -380,7 +380,7 @@ Global {DF2DD03E-87EE-482A-9FBA-6C8FBC23BDC5} = {697766CD-2046-46D9-958A-0FD3B46C98D4} {A48412B4-FD60-467E-A5D9-F155CAB4F907} = {147FCE31-EC09-4C90-8E4D-37CA87ED18C3} {D4C9A1A0-7053-F072-21F5-4E0C5827136D} = {69A71E2C-00E3-42F3-854E-BE157A24834E} - {4FBA1587-BAFC-49F8-803A-D1CF431A26F5} = {69A71E2C-00E3-42F3-854E-BE157A24834E} + {4FBA1587-BAFC-49F8-803A-D1CF431A26F5} = {7068BB97-1958-4060-B5F1-859464592E56} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {2C02C405-4798-41CA-AF98-61EDFEF6772E} diff --git a/playground/ETag/Caching.cs b/samples/ETag/Caching.cs similarity index 100% rename from playground/ETag/Caching.cs rename to samples/ETag/Caching.cs diff --git a/playground/ETag/ETag.csproj b/samples/ETag/ETag.csproj similarity index 100% rename from playground/ETag/ETag.csproj rename to samples/ETag/ETag.csproj diff --git a/playground/ETag/EtagAbstractions.cs b/samples/ETag/EtagAbstractions.cs similarity index 100% rename from playground/ETag/EtagAbstractions.cs rename to samples/ETag/EtagAbstractions.cs diff --git a/playground/ETag/OccSimulation.cs b/samples/ETag/OccSimulation.cs similarity index 99% rename from playground/ETag/OccSimulation.cs rename to samples/ETag/OccSimulation.cs index 354d59b779..4a1c09ea20 100644 --- a/playground/ETag/OccSimulation.cs +++ b/samples/ETag/OccSimulation.cs @@ -80,7 +80,7 @@ public static async Task RunSimulation() break; } - Action userUpdateAction = (userInfo) => {}; + Action userUpdateAction = (userInfo) => { }; switch (input) { case "FirstName": diff --git a/playground/ETag/Program.cs b/samples/ETag/Program.cs similarity index 100% rename from playground/ETag/Program.cs rename to samples/ETag/Program.cs