Files
TinyInvoice/Server/Server.csproj
Andre Beging 415ca59575 Add publish settings and adjust .gitignore
Enabled single-file publishing in Server.csproj and included new IntelliJ IDEA configuration files for Git. Adjusted .gitignore to include publish directory.
2024-11-06 16:09:41 +01:00

15 lines
382 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PublishSingleFile>true</PublishSingleFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="QuestPDF" Version="2024.10.2" />
</ItemGroup>
</Project>