Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Aspire.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,7 @@
<Project Path="src/Aspire.Hosting.CodeGeneration.Java/Aspire.Hosting.CodeGeneration.Java.csproj" />
<Project Path="src/Aspire.Hosting.CodeGeneration.Rust/Aspire.Hosting.CodeGeneration.Rust.csproj" />
<Project Path="src/Aspire.Hosting.RemoteHost/Aspire.Hosting.RemoteHost.csproj" />
<Project Path="src/Aspire.Managed/Aspire.Managed.csproj" />
</Folder>
<Folder Name="/Testing/">
<Project Path="src/Aspire.Hosting.Testing/Aspire.Hosting.Testing.csproj" />
Expand Down
28 changes: 1 addition & 27 deletions src/Aspire.Hosting.RemoteHost/Aspire.Hosting.RemoteHost.csproj
Original file line number Diff line number Diff line change
@@ -1,36 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AssemblyName>aspire-server</AssemblyName>
<Description>Remote host server for polyglot Aspire AppHosts.</Description>
<PackageTags>aspire hosting polyglot</PackageTags>

<!-- This is included in the Aspire bundle layout -->
<IsPackable>true</IsPackable>
<!-- New package, no baseline to compare against yet -->
<EnablePackageValidation>false</EnablePackageValidation>

<!-- Framework-dependent deployment - uses the bundled runtime -->
<SelfContained>false</SelfContained>
<PublishSingleFile>false</PublishSingleFile>

<!-- Suppress IL3000 for single-file - code handles Assembly.Location returning empty -->
<NoWarn>$(NoWarn);IL3000</NoWarn>

<!-- Allow running on newer .NET versions -->
<RollForward>Major</RollForward>

<!-- Minimize size by not including unnecessary metadata -->
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>

<!-- Skip Aspire workload checks - this is internal tooling -->
<SkipValidateAspireHostProjectResources>true</SkipValidateAspireHostProjectResources>
<SkipAddAspireDefaultReferences>true</SkipAddAspireDefaultReferences>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
8 changes: 0 additions & 8 deletions src/Aspire.Hosting.RemoteHost/Program.cs

This file was deleted.

Loading