From 0d09e5343f74d716b3bfb1d0e765e19e140c1652 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 | 2 +- {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, 2 insertions(+), 2 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 cdb5aa6472c..045bcf82da6 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 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 354d59b779d..4a1c09ea200 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