From ad28264a1eeec49a9cc776c9e48128b4d2c83145 Mon Sep 17 00:00:00 2001 From: Eric Erhardt Date: Wed, 11 Mar 2026 18:40:34 -0500 Subject: [PATCH] Clean up RemoteHost project now that it is included in the Aspire.Managed These settings are no longer needed. --- Aspire.slnx | 1 + .../Aspire.Hosting.RemoteHost.csproj | 28 +------------------ src/Aspire.Hosting.RemoteHost/Program.cs | 8 ------ 3 files changed, 2 insertions(+), 35 deletions(-) delete mode 100644 src/Aspire.Hosting.RemoteHost/Program.cs diff --git a/Aspire.slnx b/Aspire.slnx index 03ee4cce7bd..317a95816fa 100644 --- a/Aspire.slnx +++ b/Aspire.slnx @@ -383,6 +383,7 @@ + diff --git a/src/Aspire.Hosting.RemoteHost/Aspire.Hosting.RemoteHost.csproj b/src/Aspire.Hosting.RemoteHost/Aspire.Hosting.RemoteHost.csproj index 1184e98c9aa..b674702bdfa 100644 --- a/src/Aspire.Hosting.RemoteHost/Aspire.Hosting.RemoteHost.csproj +++ b/src/Aspire.Hosting.RemoteHost/Aspire.Hosting.RemoteHost.csproj @@ -1,36 +1,10 @@ - Exe net10.0 enable enable - aspire-server - Remote host server for polyglot Aspire AppHosts. - aspire hosting polyglot - - - true - - false - - - false - false - - - $(NoWarn);IL3000 - - - Major - - - none - false - - - true - true + false diff --git a/src/Aspire.Hosting.RemoteHost/Program.cs b/src/Aspire.Hosting.RemoteHost/Program.cs deleted file mode 100644 index 5018057dae5..00000000000 --- a/src/Aspire.Hosting.RemoteHost/Program.cs +++ /dev/null @@ -1,8 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. - -// This is the entry point for the pre-built AppHost server used in bundle mode. -// It runs the RemoteHostServer which listens on a Unix socket for JSON-RPC -// connections from polyglot app hosts (TypeScript, Python, etc.) - -await Aspire.Hosting.RemoteHost.RemoteHostServer.RunAsync(args).ConfigureAwait(false);