-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathReactor.Tests.csproj
More file actions
45 lines (41 loc) · 2.29 KB
/
Reactor.Tests.csproj
File metadata and controls
45 lines (41 loc) · 2.29 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0-windows10.0.22621.0</TargetFramework>
<Platforms>x64;ARM64</Platforms>
<AssemblyName>Reactor.Tests</AssemblyName>
<RootNamespace>Microsoft.UI.Reactor.Tests</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWinUI>true</UseWinUI>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<OutputType>Library</OutputType>
<!-- CsWinRT1032 (collection-literal targeting non-mutable interface) and
CsWinRT1033 (cast through [ComImport] interface) are AOT/trimming
warnings about data flowing across a WinRT ABI boundary. These tests
call managed Reactor APIs directly and are never AOT-published, so
neither concern applies. Suppress to keep test code idiomatic. -->
<NoWarn>$(NoWarn);CsWinRT1032;CsWinRT1033</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.WindowsAppSDK" Version="$(WindowsAppSDKVersion)" />
<PackageReference Include="Microsoft.Diagnostics.Tracing.TraceEvent" Version="3.1.16" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Analyzer.Testing" Version="1.1.2" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.CodeFix.Testing" Version="1.1.2" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.8.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2" />
<PackageReference Include="coverlet.collector" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Reactor\Reactor.csproj" />
<ProjectReference Include="..\..\src\Reactor.Localization.Generator\Reactor.Localization.Generator.csproj" />
<ProjectReference Include="..\..\src\Reactor.Cli\Reactor.Cli.csproj" />
<ProjectReference Include="..\..\src\Reactor.Analyzers\Reactor.Analyzers.csproj" />
</ItemGroup>
</Project>