mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
- Removed copy of logo in Generator. - Removed older generated Raylib.cs from Generator.
23 lines
656 B
XML
23 lines
656 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
|
|
<ApplicationIcon>../Logo/raylib-cs.ico</ApplicationIcon>
|
|
<Platforms>x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Dia2Dump.exe">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="raylib.pdb">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.10.0"/>
|
|
</ItemGroup>
|
|
|
|
</Project> |