Files
MicrosoftIris/Tests/SimpleIrisApp/SimpleIrisApp.csproj
T

20 lines
520 B
XML
Raw Normal View History

2022-07-15 21:00:29 -05:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\UIX\UIX.csproj" />
2023-05-23 20:12:35 -05:00
<EmbeddedResource Include="Assets\*.*" />
<EmbeddedResource Include="Pages\*.*" />
2022-07-15 21:00:29 -05:00
</ItemGroup>
<Target Name="CopyCustomContent" AfterTargets="AfterBuild">
<Copy SourceFiles="..\..\UIXrender.dll" DestinationFolder="$(OutDir)" />
</Target>
</Project>