Remove CutFabApiClient and DrawingSelectionForm - exports no longer depend on an external API server. DXF/PDF files are saved directly to a configurable output folder, and export records are persisted to a local SQL Server database via EF Core. Replace Color-based progress logging with LogLevel enum across all services. Redesign MainForm with equipment/drawing filter dropdowns populated from export history, log row coloring by severity, and simplified startup flow in Program.cs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
552 B
XML
16 lines
552 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<startup>
|
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
|
|
</startup>
|
|
<appSettings>
|
|
<add key="MaxBendRadius" value="2.0"/>
|
|
<add key="ExportOutputFolder" value="C:\ExportDXF\Output"/>
|
|
</appSettings>
|
|
<connectionStrings>
|
|
<add name="ExportDxfDb"
|
|
connectionString="Server=localhost;Database=ExportDxfDb;Trusted_Connection=True;TrustServerCertificate=True;"
|
|
providerName="Microsoft.Data.SqlClient"/>
|
|
</connectionStrings>
|
|
</configuration>
|