Files
MicrosoftIris/Tests/SimpleIrisApp/SimpleIrisApp.csproj
T

24 lines
640 B
XML
Raw Normal View History

2022-07-15 21:00:29 -05:00
<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>