2018-06-21 15:10:19 -06:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-02-20 13:09:23 -07:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2018-05-11 17:10:27 -06:00
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-06-30 09:43:04 -06:00
|
|
|
|
<RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
2018-02-20 13:09:23 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-02-23 14:48:27 -07:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-02-20 13:09:23 -07:00
|
|
|
|
<ItemGroup>
|
2018-06-21 15:10:19 -06:00
|
|
|
|
<PackageReference Include="OpenTK.NetStandard" Version="1.0.4" />
|
2018-02-20 13:09:23 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-02-23 14:48:27 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="Gal\OpenGL\FbVtxShader.glsl">
|
|
|
|
|
<LogicalName>GlFbVtxShader</LogicalName>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
<EmbeddedResource Include="Gal\OpenGL\FbFragShader.glsl">
|
|
|
|
|
<LogicalName>GlFbFragShader</LogicalName>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-02-20 13:09:23 -07:00
|
|
|
|
</Project>
|