RPI_Matrix/RPI-Matrix.csproj

39 lines
1.3 KiB
XML
Raw Permalink Normal View History

2022-10-18 05:49:03 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2022-10-18 05:50:52 +00:00
<!-- 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 -->
2022-10-18 13:31:29 +00:00
<!-- https://git.baipyr.us/Baipyrus/ConsoleTetris/src/branch/rpi-rgb-led-matrix -->
2022-10-18 05:49:03 +00:00
<ItemGroup>
<ProjectReference Include="..\RPI-Snake\SnakeGame.csproj" />
<ProjectReference Include="..\RPI-Flappy\FlappyBird.csproj" />
2022-10-18 13:31:29 +00:00
<ProjectReference Include="..\RPI-Tetris\Tetris.csproj" />
2022-10-18 05:49:03 +00:00
<Reference Include="RGBLedMatrix.dll" />
</ItemGroup>
<PropertyGroup>
2022-10-18 07:05:53 +00:00
<MainEntryPoint>RPI_Matrix.RPI_Matrix</MainEntryPoint>
2022-10-18 05:49:03 +00:00
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<SelfContained>true</SelfContained>
<TargetFramework>net6.0</TargetFramework>
<PublishReadyToRun>true</PublishReadyToRun>
<RuntimeIdentifier>linux-arm64</RuntimeIdentifier>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
2022-10-18 07:05:53 +00:00
<StartupObject>RPI_Matrix.RPI_Matrix</StartupObject>
2022-10-18 05:49:03 +00:00
</PropertyGroup>
<ItemGroup>
<Compile Remove="samples\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="samples\**" />
</ItemGroup>
<ItemGroup>
<None Remove="samples\**" />
</ItemGroup>
</Project>