RPI_Matrix/RPI-Matrix.csproj

39 lines
1.3 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<!-- Reference to local copies of: -->
<!-- https://git.baipyr.us/Baipyrus/MultiplayerSnakeGame/src/branch/rpi-rgb-led-matrix -->
<!-- https://git.baipyr.us/Baipyrus/ConsoleFlappyBird/src/branch/rpi-rgb-led-matrix -->
<!-- https://git.baipyr.us/Baipyrus/ConsoleTetris/src/branch/rpi-rgb-led-matrix -->
<ItemGroup>
<ProjectReference Include="..\RPI-Snake\SnakeGame.csproj" />
<ProjectReference Include="..\RPI-Flappy\FlappyBird.csproj" />
<ProjectReference Include="..\RPI-Tetris\Tetris.csproj" />
<Reference Include="RGBLedMatrix.dll" />
</ItemGroup>
<PropertyGroup>
<MainEntryPoint>RPI_Matrix.RPI_Matrix</MainEntryPoint>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<SelfContained>true</SelfContained>
<TargetFramework>net6.0</TargetFramework>
<PublishReadyToRun>true</PublishReadyToRun>
<RuntimeIdentifier>linux-arm64</RuntimeIdentifier>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<StartupObject>RPI_Matrix.RPI_Matrix</StartupObject>
</PropertyGroup>
<ItemGroup>
<Compile Remove="samples\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="samples\**" />
</ItemGroup>
<ItemGroup>
<None Remove="samples\**" />
</ItemGroup>
</Project>