Updated the project version, assembly version, file version, and informational version from 2.3.0-beta to 2.4.0-beta in the ReC.API.csproj file. This prepares the project for the next beta release.
36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<PackageId>ReC.API</PackageId>
|
|
<Authors>Digital Data GmbH</Authors>
|
|
<Company>Digital Data GmbH</Company>
|
|
<Product>ReC.API</Product>
|
|
<PackageIcon>Assets\icon.ico</PackageIcon>
|
|
<PackageTags>digital data rest-caller rec api</PackageTags>
|
|
<Version>2.4.0-beta</Version>
|
|
<AssemblyVersion>2.4.0.0</AssemblyVersion>
|
|
<FileVersion>2.4.0.0</FileVersion>
|
|
<InformationalVersion>2.4.0-beta</InformationalVersion>
|
|
<Copyright>Copyright © 2025 Digital Data GmbH. All rights reserved.</Copyright>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|
<UserSecretsId>cf893b96-c71a-4a96-a6a7-40004249e1a3</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.11" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
|
|
<PackageReference Include="NLog" Version="5.2.5" />
|
|
<PackageReference Include="NLog.Web.AspNetCore" Version="5.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ReC.Application\ReC.Application.csproj" />
|
|
<ProjectReference Include="..\ReC.Infrastructure\ReC.Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|