50 lines
1.6 KiB
XML
50 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<Company>Gerst ITS</Company>
|
|
<Authors>Gerst ITS</Authors>
|
|
<Copyright>© 2025 Gerst ITS</Copyright>
|
|
<Authors>Gerst ITS</Authors>
|
|
<Product>Gerst ITS Examples Web Api</Product>
|
|
<Description>Exapmle Web Api</Description>
|
|
<Version>0.0.0.0</Version>
|
|
<AssemblyVersion>0.0.0.0</AssemblyVersion>
|
|
<AssemblyInformationalVersion>0.0.0.0</AssemblyInformationalVersion>
|
|
<FileVersion>0.0.0.0</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
|
|
<WarningsAsErrors />
|
|
<NoWarn>1591</NoWarn>
|
|
<DocumentationFile>bin\Release\net8.0\GerstITS.Example.Api.xml</DocumentationFile>
|
|
<OutputPath></OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
|
|
<WarningsAsErrors />
|
|
<NoWarn>1591</NoWarn>
|
|
<DocumentationFile>bin\Release\net8.0\GerstITS.Example.Api.xml</DocumentationFile>
|
|
<OutputPath></OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="GerstITS.Authentication.OpenId" />
|
|
<PackageReference Include="GerstITS.Data.EntityFramework" />
|
|
<PackageReference Include="GerstITS.Web.Api.Swagger" />
|
|
<PackageReference Include="Serilog.AspNetCore" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GerstITS.Examples.Logic\GerstITS.Examples.Logic.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|