f9f111bc85
* Initial intrinsics support * Update tests to work with the new Vector128 type and intrinsics * Drop SSE4.1 requirement * Fix copy-paste mistake
32 lines
932 B
XML
32 lines
932 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="OpenTK.NETCore" Version="1.1.2749.6433" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Gal\OpenGL\FbVtxShader.glsl">
|
|
<LogicalName>GlFbVtxShader</LogicalName>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Include="Gal\OpenGL\FbFragShader.glsl">
|
|
<LogicalName>GlFbFragShader</LogicalName>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
</Project>
|