1234567891011121314151617181920 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="MessagePack" Version="3.0.308" />
- </ItemGroup>
- <Target Name="PostBuild" AfterTargets="PostBuildEvent">
- <Exec Command="xcopy /Y /E "$(TargetDir)" "$(SolutionDir)Avalonia\ShakerApp\bin\$(Configuration)\net8.0\Communication\$(ProjectName)\"" />
- </Target>
- <ItemGroup>
- <ProjectReference Include="..\ICommunication\ICommunication.csproj" />
- <ProjectReference Include="..\TcpEventBus\TcpEventBus.csproj" />
- </ItemGroup>
- </Project>
|