18 lines
615 B
XML
18 lines
615 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>WinExe</OutputType>
|
||
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
||
|
|
<UseWPF>true</UseWPF>
|
||
|
|
<RootNamespace>TeamsISO.App</RootNamespace>
|
||
|
|
<!-- WPF only builds on Windows. Non-Windows CI skips this project. -->
|
||
|
|
<BuildOnNonWindows Condition="'$(OS)' != 'Windows_NT'">false</BuildOnNonWindows>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\TeamsISO.Engine\TeamsISO.Engine.csproj" />
|
||
|
|
<ProjectReference Include="..\TeamsISO.Engine.NdiInterop\TeamsISO.Engine.NdiInterop.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|