b497f018dd
Add DbExporter tool project with: - Project file targeting .NET 10 with required packages (protobuf-net-data, ZstdSharp.Port, Microsoft.Data.SqlClient, Oracle.ManagedDataAccess.Core) - ExportDefinition model for JSON-based export configuration - Placeholder Program.cs entry point
10 lines
162 B
C#
10 lines
162 B
C#
namespace DbExporter;
|
|
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("DbExporter - Database Export Tool");
|
|
}
|
|
}
|