- Add LaserQuoteBaseUrl config property to PepTools - Implement CompareGeometry() MCP tool to compare part geometry between PEP and LaserQuote - Read LaserQuoteBaseUrl from appsettings.json in Program.cs - Add appsettings.json with LaserQuoteBaseUrl config - Update PepMcp.csproj to copy appsettings.json to output directory
22 lines
578 B
XML
22 lines
578 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ModelContextProtocol" Version="0.1.0-preview.14" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="appsettings.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|