55 lines
1.9 KiB
XML
55 lines
1.9 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>Example 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\Debug\net10.0\GerstITS.Examples.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\net10.0\GerstITS.Examples.Api.xml</DocumentationFile>
|
|
<OutputPath></OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="GerstITS.Authentication.ApiKey" />
|
|
<PackageReference Include="GerstITS.Authentication.OpenId" />
|
|
<PackageReference Include="GerstITS.Data.EntityFramework" />
|
|
<PackageReference Include="GerstITS.Mail" />
|
|
<PackageReference Include="GerstITS.System" />
|
|
<PackageReference Include="GerstITS.Web" />
|
|
<PackageReference Include="GerstITS.Web.Api.Swagger" />
|
|
<PackageReference Include="Serilog.AspNetCore" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GerstITS.Examples.Data\GerstITS.Examples.Data.csproj" />
|
|
<ProjectReference Include="..\GerstITS.Examples.Logic\GerstITS.Examples.Logic.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|