-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathReactor.AppTests.Host.csproj
More file actions
28 lines (24 loc) · 1.08 KB
/
Reactor.AppTests.Host.csproj
File metadata and controls
28 lines (24 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows10.0.22621.0</TargetFramework>
<Platforms>x64;ARM64</Platforms>
<RootNamespace>Microsoft.UI.Reactor.AppTests.Host</RootNamespace>
<AssemblyName>Reactor.AppTests.Host</AssemblyName>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWinUI>true</UseWinUI>
<WindowsPackageType>None</WindowsPackageType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.WindowsAppSDK" Version="$(WindowsAppSDKVersion)" />
<PackageReference Include="MessageFormat" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Reactor\Reactor.csproj" />
<!-- Standalone library used by Issue142_ThirdPartyControlPrivateDp_Renders to
simulate a 3P control NuGet referenced from a Reactor app that has its
own XAML metadata. -->
<ProjectReference Include="..\Reactor.AppTests.ThirdPartyControls\Reactor.AppTests.ThirdPartyControls.csproj" />
</ItemGroup>
</Project>