LocalCommunication.csproj 710 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="MessagePack" Version="3.0.308" />
  9. </ItemGroup>
  10. <Target Name="PostBuild" AfterTargets="PostBuildEvent">
  11. <Exec Command="xcopy /Y /E &quot;$(TargetDir)&quot; &quot;$(SolutionDir)Avalonia\ShakerApp\bin\$(Configuration)\net8.0\Communication\$(ProjectName)\&quot;" />
  12. </Target>
  13. <ItemGroup>
  14. <ProjectReference Include="..\ICommunication\ICommunication.csproj" />
  15. <ProjectReference Include="..\TcpEventBus\TcpEventBus.csproj" />
  16. </ItemGroup>
  17. </Project>