LocalCommunication.csproj 1019 B

12345678910111213141516171819202122232425
  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.1.3" />
  9. <PackageReference Include="MessagePack.Annotations" Version="3.1.3" />
  10. <PackageReference Include="MessagePackAnalyzer" Version="3.1.3">
  11. <PrivateAssets>all</PrivateAssets>
  12. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  13. </PackageReference>
  14. </ItemGroup>
  15. <Target Name="PostBuild" AfterTargets="PostBuildEvent">
  16. <Exec Command="xcopy /Y /E &quot;$(TargetDir)&quot; &quot;$(SolutionDir)Avalonia\ShakerApp\bin\$(Configuration)\net8.0\Communication\$(ProjectName)\&quot;" />
  17. </Target>
  18. <ItemGroup>
  19. <ProjectReference Include="..\ICommunication\ICommunication.csproj" />
  20. <ProjectReference Include="..\TcpEventBus\TcpEventBus.csproj" />
  21. </ItemGroup>
  22. </Project>