12345678910111213141516171819202122232425 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="MessagePack" Version="3.1.3" />
- <PackageReference Include="MessagePack.Annotations" Version="3.1.3" />
- <PackageReference Include="MessagePackAnalyzer" Version="3.1.3">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- </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>
|