73 lines
3.3 KiB
XML
73 lines
3.3 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<!--
|
||
|
|
TeamsISO WinUI 3 host. Coexists with the WPF project (src/TeamsISO.App)
|
||
|
|
during the redesign migration. Shares the engine (TeamsISO.Engine) and
|
||
|
|
the NDI interop assembly via ProjectReference. Once the WinUI 3 build is
|
||
|
|
feature-complete and tested against a real Teams meeting, the WPF
|
||
|
|
project is retired and this becomes the only shipping host.
|
||
|
|
|
||
|
|
Target framework choice: net8.0-windows10.0.19041.0 is the minimum the
|
||
|
|
Windows App SDK supports cleanly. Going higher (e.g. 22621) would lock
|
||
|
|
out Win10 1809+ operators, which is undesirable for a broadcast tool
|
||
|
|
that still has to run on hardware in working broadcast suites.
|
||
|
|
|
||
|
|
Packaging mode: WindowsPackageType=None for "unpackaged" — the .exe
|
||
|
|
drops directly into Program Files via the existing MSI rather than
|
||
|
|
going through MSIX. The Windows App Runtime install becomes a prereq
|
||
|
|
of the MSI (or bootstrapped at startup), which matches how operators
|
||
|
|
install NDI Runtime today.
|
||
|
|
-->
|
||
|
|
<PropertyGroup>
|
||
|
|
<OutputType>WinExe</OutputType>
|
||
|
|
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
|
||
|
|
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
|
||
|
|
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
|
||
|
|
<RootNamespace>TeamsISO.App.WinUI</RootNamespace>
|
||
|
|
<AssemblyName>TeamsISO</AssemblyName>
|
||
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||
|
|
<Platforms>x64;ARM64</Platforms>
|
||
|
|
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
|
||
|
|
<UseWinUI>true</UseWinUI>
|
||
|
|
<WindowsPackageType>None</WindowsPackageType>
|
||
|
|
<EnableMsixTooling>true</EnableMsixTooling>
|
||
|
|
<!--
|
||
|
|
Pinning the Windows SDK projection package: WindowsAppSDK 1.6 requires
|
||
|
|
Microsoft.Windows.SDK.NET.Ref >= 10.0.19041.38, but the .NET 8.0.301
|
||
|
|
SDK installed here ships an older Ref. Setting this explicitly avoids
|
||
|
|
having to upgrade the .NET SDK on the build host.
|
||
|
|
-->
|
||
|
|
<WindowsSdkPackageVersion>10.0.19041.38</WindowsSdkPackageVersion>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<ApplicationIcon>Assets\teamsiso.ico</ApplicationIcon>
|
||
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<!--
|
||
|
|
WindowsAppSDK 1.6 is the current LTS branch (Win10 1809-compatible at
|
||
|
|
a 10.0.17763 floor, which matches our SupportedOSPlatformVersion).
|
||
|
|
DataGrid lives in the older 7.x Community Toolkit because the 8.x line
|
||
|
|
dropped it; 7.1.2 still works on WinUI 3 / WindowsAppSDK 1.6 and is the
|
||
|
|
only currently-maintained free DataGrid for this stack.
|
||
|
|
-->
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.6.250602001" />
|
||
|
|
<PackageReference Include="CommunityToolkit.WinUI.UI.Controls.DataGrid" Version="7.1.2" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\TeamsISO.Engine\TeamsISO.Engine.csproj" />
|
||
|
|
<ProjectReference Include="..\TeamsISO.Engine.NdiInterop\TeamsISO.Engine.NdiInterop.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Content Include="Assets\teamsiso.ico" />
|
||
|
|
<Content Include="Assets\dragon-mark.png" />
|
||
|
|
<Content Include="Assets\wild-dragon-wordmark.png" />
|
||
|
|
<Content Include="Assets\Fonts\Inter.ttf" />
|
||
|
|
<Content Include="Assets\Fonts\JetBrainsMono.ttf" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|