70 lines
2.7 KiB
XML
70 lines
2.7 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.Common" />
|
|
<PackageReference Include="GerstITS.Data" />
|
|
<PackageReference Include="GerstITS.Data.EntityFramework" />
|
|
<PackageReference Include="GerstITS.IoC" />
|
|
<PackageReference Include="GerstITS.IoC.DotNetCore" />
|
|
<PackageReference Include="GerstITS.Job" />
|
|
<PackageReference Include="GerstITS.Job.Scheduling" />
|
|
<PackageReference Include="GerstITS.Mapping.AutoMapper" />
|
|
<PackageReference Include="GerstITS.Search" />
|
|
<PackageReference Include="GerstITS.System" />
|
|
<PackageReference Include="GerstITS.Validation" />
|
|
<PackageReference Include="GerstITS.Web" />
|
|
<PackageReference Include="GerstITS.Web.Api" />
|
|
<PackageReference Include="GerstITS.Web.Api.Swagger" />
|
|
<PackageReference Include="GerstITS.Web.Rest" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Newtonsoft.Json" />
|
|
<PackageReference Include="Serilog.AspNetCore" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GerstITS.Examples.Jobs.SayHelloWorld\GerstITS.Examples.Jobs.SayHelloWorld.csproj" />
|
|
<ProjectReference Include="..\GerstITS.Examples.Logic\GerstITS.Examples.Logic.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="wwwroot\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|