mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
17 lines
721 B
XML
17 lines
721 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<AssemblyName>UIXrender</AssemblyName>
|
|
<RootNamespace>Microsoft.Iris.Render</RootNamespace>
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
<PublishAot>true</PublishAot>
|
|
|
|
<!-- Required for PublishAot to emit an actual exporting shared library (.dll/.so)
|
|
for the [UnmanagedCallersOnly] methods below: without this, PublishAot
|
|
alone produces a native executable, not something P/Invoke-able. -->
|
|
<NativeLib>Shared</NativeLib>
|
|
</PropertyGroup>
|
|
</Project> |