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