mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-09-09 03:01:41 -04:00
22 lines
766 B
XML
22 lines
766 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<StartupObject>Examples.Program</StartupObject>
|
|
<RunWorkingDirectory>$(MSBuildThisFileDirectory)</RunWorkingDirectory>
|
|
<LangVersion>10</LangVersion>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="Core/LoadingThread.cs" />
|
|
<Compile Remove="Text/Unicode.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Using Include="Raylib_cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Raylib-cs/Raylib-cs.csproj" />
|
|
<ProjectReference Include="../Raylib-cs.Native/Raylib-cs.Native.csproj" />
|
|
</ItemGroup>
|
|
</Project> |