42 lines
1.3 KiB
XML
42 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<RootNamespace>ClientApiPoC.ApiService</RootNamespace>
|
|
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<SelfContained>true</SelfContained>
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
|
|
<PublishTrimmed>false</PublishTrimmed>
|
|
|
|
<Company>Mike Schumann</Company>
|
|
<Copyright>Copyright © 2026 $(Company)</Copyright>
|
|
<AssemblyVersion>0.1.0</AssemblyVersion>
|
|
<FileVersion>$(AssemblyVersion)</FileVersion>
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
<DebugType>portable</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
|
<DebugType>none</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.5" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="10.1.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Shared\Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|