-
Notifications
You must be signed in to change notification settings - Fork 302
Expand file tree
/
Copy pathMicrosoft.Testing.Extensions.PackagedApp.csproj
More file actions
56 lines (48 loc) · 2.58 KB
/
Copy pathMicrosoft.Testing.Extensions.PackagedApp.csproj
File metadata and controls
56 lines (48 loc) · 2.58 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
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Microsoft.Testing.Extensions.PackagedApp</RootNamespace>
<!-- The packaged-app launcher uses modern Process APIs (ArgumentList, WaitForExitAsync,
Kill(entireProcessTree)) and targets runtime hosts, so it ships only for .NET. -->
<TargetFrameworks>$(SupportedNetFrameworks)</TargetFrameworks>
<GenerateBuildInfo>true</GenerateBuildInfo>
<BuildInfoTemplateFile>$(RepoRoot)src\Platform\SharedExtensionHelpers\BuildInfo.cs.template</BuildInfoTemplateFile>
<!-- This extension consumes the experimental ITestHostLauncher extension point. -->
<NoWarn>$(NoWarn);TPEXP</NoWarn>
<!-- Early preview/experimental package: keep an experimental (alpha) version even in official builds. -->
<VersionPrefix>$(MicrosoftTestingExtensionsPackagedAppVersionPrefix)</VersionPrefix>
<PreReleaseVersionLabel>$(MicrosoftTestingExtensionsPackagedAppPreReleaseVersionLabel)</PreReleaseVersionLabel>
<SuppressFinalPackageVersion>true</SuppressFinalPackageVersion>
</PropertyGroup>
<!-- NuGet properties -->
<PropertyGroup>
<PackageDescription>
<![CDATA[This package provides extensions to Microsoft Testing Platform intended to extend base functionalities.
This package extends Microsoft Testing Platform to deploy and launch a packaged Windows (UWP/WinUI) test host through a custom mechanism instead of starting it in place.]]>
</PackageDescription>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="BannedSymbols.txt" />
<AdditionalFiles Include="PublicAPI/PublicAPI.Shipped.txt" />
<AdditionalFiles Include="PublicAPI/PublicAPI.Unshipped.txt" />
</ItemGroup>
<ItemGroup>
<Compile Include="$(RepoRoot)src/Polyfills/**/*.cs" Link="Polyfills\%(RecursiveDir)%(Filename)%(Extension)" />
</ItemGroup>
<!-- NuGet package layout -->
<!-- NuGet folders https://learn.microsoft.com/nuget/create-packages/creating-a-package#from-a-convention-based-working-directory -->
<ItemGroup>
<Content Include="buildMultiTargeting/**">
<Pack>true</Pack>
<PackagePath>buildMultiTargeting</PackagePath>
</Content>
<TfmSpecificPackageFile Include="buildTransitive/**">
<PackagePath>buildTransitive/$(TargetFramework)</PackagePath>
</TfmSpecificPackageFile>
<TfmSpecificPackageFile Include="build/**">
<PackagePath>build/$(TargetFramework)</PackagePath>
</TfmSpecificPackageFile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(RepoRoot)src\Platform\Microsoft.Testing.Platform\Microsoft.Testing.Platform.csproj" />
</ItemGroup>
</Project>