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

30 lines
983 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>
<ItemGroup>
<InternalsVisibleTo Include="NeonSprawl.Server.Tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Npgsql" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<Content Include="..\db\migrations\*.sql" Link="db\migrations\%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>