The WinForms app's LoadPosts() scans Posts/ for IPostProcessor DLLs. A build target copies the Cincinnati DLL there so it appears in the Nest > Post menu automatically. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
633 B
XML
17 lines
633 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<RootNamespace>OpenNest.Posts.Cincinnati</RootNamespace>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\OpenNest.Core\OpenNest.Core.csproj" />
|
|
</ItemGroup>
|
|
<Target Name="CopyToPostsDir" AfterTargets="Build">
|
|
<PropertyGroup>
|
|
<PostsDir>..\OpenNest\bin\$(Configuration)\$(TargetFramework)\Posts\</PostsDir>
|
|
</PropertyGroup>
|
|
<MakeDir Directories="$(PostsDir)" />
|
|
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(PostsDir)" SkipUnchangedFiles="true" />
|
|
</Target>
|
|
</Project>
|