diff --git a/Aspire.slnx b/Aspire.slnx
index 4ea6dbc4cdc..52300ace4ae 100644
--- a/Aspire.slnx
+++ b/Aspire.slnx
@@ -142,10 +142,6 @@
-
-
-
-
diff --git a/Directory.Packages.props b/Directory.Packages.props
index 6f47a76767e..7be83c1fba4 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -174,9 +174,6 @@
-
-
-
diff --git a/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.AppHost/AzureFunctionsWithDts.AppHost.csproj b/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.AppHost/AzureFunctionsWithDts.AppHost.csproj
deleted file mode 100644
index 141e339b6f1..00000000000
--- a/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.AppHost/AzureFunctionsWithDts.AppHost.csproj
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
- Exe
- $(DefaultTargetFramework)
- enable
- enable
- true
- DC3A64A6-3991-41E2-956F-BFACC8091EC1
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.AppHost/Program.cs b/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.AppHost/Program.cs
deleted file mode 100644
index 44e7d42bc99..00000000000
--- a/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.AppHost/Program.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-var builder = DistributedApplication.CreateBuilder(args);
-
-var storage = builder.AddAzureStorage("storage").RunAsEmulator();
-
-var scheduler = builder.AddDurableTaskScheduler("scheduler").RunAsEmulator();
-
-var taskHub = scheduler.AddTaskHub("taskhub");
-
-builder.AddAzureFunctionsProject("funcapp")
- .WithHostStorage(storage)
- .WithEnvironment("DURABLE_TASK_SCHEDULER_CONNECTION_STRING", scheduler)
- .WithEnvironment("TASKHUB_NAME", taskHub.Resource.TaskHubName);
-
-builder.Build().Run();
diff --git a/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.AppHost/Properties/launchSettings.json b/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.AppHost/Properties/launchSettings.json
deleted file mode 100644
index f5f441697c0..00000000000
--- a/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.AppHost/Properties/launchSettings.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "$schema": "https://json.schemastore.org/launchsettings.json",
- "profiles": {
- "https": {
- "commandName": "Project",
- "dotnetRunMessages": true,
- "launchBrowser": true,
- "applicationUrl": "https://localhost:17244;http://localhost:15054",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development",
- "DOTNET_ENVIRONMENT": "Development",
- "ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:21003",
- "ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "https://localhost:22110"
- }
- },
- "http": {
- "commandName": "Project",
- "dotnetRunMessages": true,
- "launchBrowser": true,
- "applicationUrl": "http://localhost:15054",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development",
- "DOTNET_ENVIRONMENT": "Development",
- "ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "http://localhost:19010",
- "ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "http://localhost:20125"
- }
- },
- "generate-manifest": {
- "commandName": "Project",
- "launchBrowser": true,
- "dotnetRunMessages": true,
- "commandLineArgs": "--publisher manifest --output-path aspire-manifest.json",
- "applicationUrl": "http://localhost:15888",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development",
- "DOTNET_ENVIRONMENT": "Development",
- "ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "http://localhost:16175"
- }
- }
- }
-}
diff --git a/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.Functions/AzureFunctionsWithDts.Functions.csproj b/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.Functions/AzureFunctionsWithDts.Functions.csproj
deleted file mode 100644
index ca8d05550d1..00000000000
--- a/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.Functions/AzureFunctionsWithDts.Functions.csproj
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
- $(DefaultTargetFramework)
- v4
- Exe
- enable
- enable
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PreserveNewest
-
-
- PreserveNewest
- Never
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.Functions/MyOrchestrationTrigger.cs b/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.Functions/MyOrchestrationTrigger.cs
deleted file mode 100644
index b0c9f43129d..00000000000
--- a/playground/AzureFunctionsWithDts/AzureFunctionsWithDts.Functions/MyOrchestrationTrigger.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-using Microsoft.Azure.Functions.Worker;
-using Microsoft.DurableTask;
-using Microsoft.Extensions.Logging;
-
-public class MyOrchestrationTrigger
-{
- [Function("Chaining")]
- public static async Task