Export tool queries all active materials, stock items, suppliers, and offerings from the database and writes a clean JSON file for version control. Includes 616 materials and 810 stock items with part numbers. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
341 B
XML
15 lines
341 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\CutList.Web\CutList.Web.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|