Group the Cincinnati and GravographIS plugin projects in a Posts/ folder so new machine posts have one home. Project names, namespaces, and the runtime Posts/ deploy target are unchanged; only relative paths in the solution and project references move.
21 lines
800 B
XML
21 lines
800 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<RootNamespace>OpenNest.Posts.GravographIS</RootNamespace>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\OpenNest.Core\OpenNest.Core.csproj" />
|
|
<PackageReference Include="System.IO.Ports" Version="8.0.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="OpenNest.Tests" />
|
|
</ItemGroup>
|
|
<Target Name="CopyToPostsDir" AfterTargets="Build">
|
|
<PropertyGroup>
|
|
<PostsDir>..\..\OpenNest\bin\$(Configuration)\net8.0-windows\Posts\</PostsDir>
|
|
</PropertyGroup>
|
|
<MakeDir Directories="$(PostsDir)" />
|
|
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(PostsDir)" SkipUnchangedFiles="true" ContinueOnError="true" />
|
|
</Target>
|
|
</Project>
|