Enabled single-file publishing in Server.csproj and included new IntelliJ IDEA configuration files for Git. Adjusted .gitignore to include publish directory.
15 lines
382 B
XML
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>
|