neon-sprawl/server/NeonSprawl.Server/NeonSprawl.Server.csproj

18 lines
640 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>NeonSprawl.Server</RootNamespace>
<AssemblyName>NeonSprawl.Server</AssemblyName>
</PropertyGroup>
<!-- Debug: no native apphost so IDEs run `dotnet …/NeonSprawl.Server.dll` using the configured SDK.
Otherwise the apphost probes /usr/share/dotnet first and misses a user-local .NET 10 install. -->
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<UseAppHost>false</UseAppHost>
</PropertyGroup>
</Project>