mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
24 lines
640 B
XML
24 lines
640 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>Exe</OutputType>
|
||
|
|
<TargetFramework>net6.0</TargetFramework>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<Platforms>x86;x64</Platforms>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<EmbeddedResource Include="Assets\*.*" />
|
||
|
|
<EmbeddedResource Include="Pages\*.*" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\..\UIX\UIX.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<Target Name="CopyCustomContent" AfterTargets="AfterBuild">
|
||
|
|
<Copy SourceFiles="..\..\UIXrender.dll" DestinationFolder="$(OutDir)" />
|
||
|
|
</Target>
|
||
|
|
|
||
|
|
</Project>
|