-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathProjectTemplate.Tests.Wasdk.csproj
More file actions
41 lines (31 loc) · 1.65 KB
/
ProjectTemplate.Tests.Wasdk.csproj
File metadata and controls
41 lines (31 loc) · 1.65 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsDeployableHead>true</IsDeployableHead>
<IsWinAppSdk>true</IsWinAppSdk>
<HasWinUI>true</HasWinUI>
<WinUIMajorVersion>3</WinUIMajorVersion>
<IsSingleExperimentHead>true</IsSingleExperimentHead>
</PropertyGroup>
<Import Project="$(ToolingDirectory)\MultiTarget\EnabledMultiTargets.props" />
<Import Project="$(ToolingDirectory)\MultiTarget\AvailableTargetFrameworks.props" />
<Import Project="$(ToolingDirectory)\MultiTarget\EnabledTargetFrameworks.props" />
<Import Project="$(ToolingDirectory)\MultiTarget\DefinedConstants.props" />
<Import Project="$(ToolingDirectory)\ProjectHeads\Tests.Head.WinAppSdk.props" />
<PropertyGroup>
<RootNamespace>ProjectTemplateTests</RootNamespace>
<AssemblyName>ProjectTemplate.Tests.WinAppSdk</AssemblyName>
</PropertyGroup>
<!-- Defining the "Msix" ProjectCapability here allows the Single-project MSIX Packaging
Tools extension to be activated for this project even if the Windows App SDK Nuget
package has not yet been restored -->
<ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
<ProjectCapability Include="Msix" />
</ItemGroup>
<!-- Needed Unit Testing helper base classes -->
<Import Project="$(ToolingDirectory)\CommunityToolkit.Tests.Shared\CommunityToolkit.Tests.Shared.projitems" Label="Unit Testing Helpers" />
<!-- Include the unit test files themselves -->
<Import Project="..\..\tests\ProjectTemplate.Tests.projitems" Label="Shared" />
<ItemGroup>
<ProjectReference Include="..\..\src\*.csproj" />
</ItemGroup>
</Project>