tbfDBBackup/tbfDBBackup.Tests/tbfDBBackup.Tests.csproj
Michal Buzik 7072399225 Add upgrade functionality and support for schema-based operations
Introduced new features including database upgrade logic, schema comparison, and schema-based updates. Refactored main program structure for modularity. Added unit tests and updated configuration files to support upgrades and enhanced mapping functionality.
2025-08-22 11:49:54 +02:00

20 lines
598 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.10.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.10.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\tbfDBBackup\tbfDBBackup.csproj" />
</ItemGroup>
</Project>