Updated <Version>, <AssemblyVersion>, <FileVersion>, and <InformationalVersion> fields in the project file from 1.0.2-beta to 1.0.3-beta. No other changes were made.
35 lines
1.3 KiB
XML
35 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>1.0.3-beta</Version>
|
|
<AssemblyVersion>1.0.3.0</AssemblyVersion>
|
|
<FileVersion>1.0.3.0</FileVersion>
|
|
<InformationalVersion>1.0.3-beta</InformationalVersion>
|
|
<Copyright>Copyright © 2025 Digital Data GmbH. All rights reserved.</Copyright>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|
</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>
|