-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathTests.Head.props
More file actions
46 lines (40 loc) · 2.38 KB
/
Tests.Head.props
File metadata and controls
46 lines (40 loc) · 2.38 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
46
<Project>
<Import Project="$(MSBuildThisFileDirectory)\..\MultiTarget\Extra.props" />
<Import Project="$(ToolingDirectory)\MultiTarget\GlobalUsings.props" />
<!-- Source generators -->
<ItemGroup Condition="'$(IsWinAppSdk)' != 'true'">
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all" />
</ItemGroup>
<!-- Test Dependencies -->
<ItemGroup>
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10"/>
<PackageReference Include="MSTest.TestFramework" Version="2.2.10"/>
<ProjectReference Include="$(ToolingDirectory)\CommunityToolkit.Tooling.TestGen\CommunityToolkit.Tooling.TestGen.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="True" />
</ItemGroup>
<Choose>
<When Condition="'$(ToolkitExtensionsSourceProject)' == ''">
<ItemGroup>
<PackageReference Include="CommunityToolkit.$(DependencyVariant).Extensions" Version="8.2.250402"/>
</ItemGroup>
</When>
<When Condition="'$(IsSingleExperimentHead)' == 'true' and $(MSBuildProjectName.StartsWith('Extensions')) == 'false'">
<ItemGroup>
<ProjectReference Include="$(ToolkitExtensionsSourceProject)"/>
</ItemGroup>
</When>
</Choose>
<!-- Global Usings -->
<ItemGroup>
<Compile Include="$(ToolingDirectory)\GlobalUsings_Tests.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="$(ToolingDirectory)\CommunityToolkit.App.Shared\Assets\LockScreenLogo.png" Link="Assets\LockScreenLogo.png" />
<Content Include="$(ToolingDirectory)\CommunityToolkit.App.Shared\Assets\SplashScreen.png" Link="Assets\SplashScreen.png" />
<Content Include="$(ToolingDirectory)\CommunityToolkit.App.Shared\Assets\MedTile.png" Link="Assets\MedTile.png" />
<Content Include="$(ToolingDirectory)\CommunityToolkit.App.Shared\Assets\AppList.png" Link="Assets\AppList.png" />
<Content Include="$(ToolingDirectory)\CommunityToolkit.App.Shared\Assets\AppList.targetsize-24_altform-unplated.png" Link="Assets\AppList.targetsize-24_altform-unplated.png" />
<Content Include="$(ToolingDirectory)\CommunityToolkit.App.Shared\Assets\StoreLogo.png" Link="Assets\StoreLogo.png" />
<Content Include="$(ToolingDirectory)\CommunityToolkit.App.Shared\Assets\WideTile.png" Link="Assets\WideTile.png" />
</ItemGroup>
</Project>