Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,8 @@ This package extends Microsoft Testing Platform to provide a Azure DevOps report
<!-- 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>
Comment on lines -23 to -28
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nohwnd Here we were packing per-TFM. The updated logic doesn't.

<None Include="buildTransitive/**" PackagePath="buildTransitive" Pack="true" />
<None Include="build/**" PackagePath="build" Pack="true" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.AzureDevOpsReport.props" />
<ItemGroup>
<!--
!!! IMPORTANT !!!
DO NOT CHANGE THE GUID, IT'S A WELL KNOWN EXTENSION POINT AND THIS EXTENSION NEEDS TO BE REGISTERED AT THE END
WE HAVE CODE INSIDE THE TASK 'TestingPlatformEntryPoint' TO ENSURE THE ORDER OF THE REGISTRATION BASED ON THIS GUID
-->
<TestingPlatformBuilderHook Include="6CFD0D63-0052-47F5-840F-46A2BAB9A48A" >
<DisplayName>Microsoft.Testing.Extensions.AzureDevOpsReport</DisplayName>
<TypeFullName>Microsoft.Testing.Extensions.AzureDevOpsReport.TestingPlatformBuilderHook</TypeFullName>
</TestingPlatformBuilderHook>
</ItemGroup>
</Project>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.AzureDevOpsReport.props" />
<Import Project="$(MSBuildThisFileDirectory)..\build\Microsoft.Testing.Extensions.AzureDevOpsReport.props" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,8 @@
<!-- 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>
<None Include="buildTransitive/**" PackagePath="buildTransitive" Pack="true" />
<None Include="build/**" PackagePath="build" Pack="true" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.AzureFoundry.props" />
<ItemGroup>
<TestingPlatformBuilderHook Include="3D8F9C1A-7B2E-4F6D-A9C3-5E8B4D1F7A6C" >
<DisplayName>Microsoft.Testing.Extensions.AzureFoundry</DisplayName>
<TypeFullName>Microsoft.Testing.Extensions.AzureFoundry.TestingPlatformBuilderHook</TypeFullName>
</TestingPlatformBuilderHook>
</ItemGroup>
</Project>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.AzureFoundry.props" />
<Import Project="$(MSBuildThisFileDirectory)..\build\Microsoft.Testing.Extensions.AzureFoundry.props" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,8 @@ This package extends Microsoft Testing Platform to provide a crash dump function
<!-- 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>
<None Include="buildTransitive/**" PackagePath="buildTransitive" Pack="true" />
<None Include="build/**" PackagePath="build" Pack="true" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.CrashDump.props" />
<ItemGroup>
<!--
!!! IMPORTANT !!!
DO NOT CHANGE THE GUID, IT'S A WELL KNOWN EXTENSION POINT AND THIS EXTENSION NEEDS TO BE REGISTERED AT THE END
WE HAVE CODE INSIDE THE TASK 'TestingPlatformEntryPoint' TO ENSURE THE ORDER OF THE REGISTRATION BASED ON THIS GUID
-->
<TestingPlatformBuilderHook Include="EC3971EE-91B7-4C77-B4E1-DF606F118FAB" >
<DisplayName>Microsoft.Testing.Extensions.CrashDump</DisplayName>
<TypeFullName>Microsoft.Testing.Extensions.CrashDump.TestingPlatformBuilderHook</TypeFullName>
</TestingPlatformBuilderHook>
</ItemGroup>
</Project>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.CrashDump.props" />
<Import Project="$(MSBuildThisFileDirectory)..\build\Microsoft.Testing.Extensions.CrashDump.props" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,8 @@ This package extends Microsoft Testing Platform to provide an implementation of
<!-- 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>
<None Include="buildTransitive/**" PackagePath="buildTransitive" Pack="true" />
<None Include="build/**" PackagePath="build" Pack="true" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.HangDump.props" />
<ItemGroup>
<TestingPlatformBuilderHook Include="8E989246-4E23-4AEF-9590-9B45485D3B7D" >
<DisplayName>Microsoft.Testing.Extensions.HangDump</DisplayName>
<TypeFullName>Microsoft.Testing.Extensions.HangDump.TestingPlatformBuilderHook</TypeFullName>
</TestingPlatformBuilderHook>
</ItemGroup>
</Project>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.HangDump.props" />
<Import Project="$(MSBuildThisFileDirectory)..\build\Microsoft.Testing.Extensions.HangDump.props" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,13 @@ This package extends Microsoft Testing Platform to provide Hot Reload support.]]
<!-- 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>
<Content Include="$(RepoRoot)/LICENSE.PLATFORMTOOLS.txt" Pack="true" PackagePath="License.txt" />
<TfmSpecificPackageFile Include="buildTransitive/**">
<PackagePath>buildTransitive/$(TargetFramework)</PackagePath>
</TfmSpecificPackageFile>
<TfmSpecificPackageFile Include="build/**">
<PackagePath>build/$(TargetFramework)</PackagePath>
</TfmSpecificPackageFile>
<None Include="buildTransitive/**" PackagePath="buildTransitive" Pack="true" />
<None Include="build/**" PackagePath="build" Pack="true" />
<None Include="$(RepoRoot)/LICENSE.PLATFORMTOOLS.txt" Pack="true" PackagePath="License.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="$(RepoRoot)src\Platform\Microsoft.Testing.Platform\Microsoft.Testing.Platform.csproj" />
</ItemGroup>

</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.HotReload.props" />
<ItemGroup>
<TestingPlatformBuilderHook Include="593E3C73-086F-4D71-AE3B-F13C6022845E" >
<DisplayName>Microsoft.Testing.Extensions.HotReload</DisplayName>
<TypeFullName>Microsoft.Testing.Extensions.HotReload.TestingPlatformBuilderHook</TypeFullName>
</TestingPlatformBuilderHook>
</ItemGroup>
</Project>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.HotReload.props" />
<Import Project="$(MSBuildThisFileDirectory)..\build\Microsoft.Testing.Extensions.HotReload.props" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,9 @@ This package extends Microsoft Testing Platform to provide a retry policy system
<!-- NuGet package layout -->
<!-- NuGet folders https://learn.microsoft.com/nuget/create-packages/creating-a-package#from-a-convention-based-working-directory -->
<ItemGroup>
<Content Include="$(RepoRoot)/LICENSE.PLATFORMTOOLS.txt" Pack="true" PackagePath="License.txt" />
<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>
<None Include="$(RepoRoot)/LICENSE.PLATFORMTOOLS.txt" Pack="true" PackagePath="License.txt" />
<None Include="buildTransitive/**" PackagePath="buildTransitive" Pack="true" />
<None Include="build/**" PackagePath="build" Pack="true" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.Retry.props" />
<ItemGroup>
<TestingPlatformBuilderHook Include="AEC35708-DBA0-458A-ADF0-AA8CC384D0CE" >
<DisplayName>Microsoft.Testing.Extensions.Retry</DisplayName>
<TypeFullName>Microsoft.Testing.Extensions.Retry.TestingPlatformBuilderHook</TypeFullName>
</TestingPlatformBuilderHook>
</ItemGroup>
</Project>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.Retry.props" />
<Import Project="$(MSBuildThisFileDirectory)..\build\Microsoft.Testing.Extensions.Retry.props" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,8 @@ This package provides telemetry for the platform.]]>
<!-- 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>
<None Include="buildTransitive/**" PackagePath="buildTransitive" Pack="true" />
<None Include="build/**" PackagePath="build" Pack="true" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.Telemetry.props" />
<ItemGroup>
<TestingPlatformBuilderHook Include="98058041-B5B6-4A75-9834-58E6DF796A22" >
<DisplayName>Microsoft.Testing.Extensions.Telemetry</DisplayName>
<TypeFullName>Microsoft.Testing.Extensions.Telemetry.TestingPlatformBuilderHook</TypeFullName>
</TestingPlatformBuilderHook>
</ItemGroup>
</Project>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.Telemetry.props" />
<Import Project="$(MSBuildThisFileDirectory)..\build\Microsoft.Testing.Extensions.Telemetry.props" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,8 @@ This package extends Microsoft Testing Platform to provide TRX test reports.]]>
<!-- 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>
<None Include="buildTransitive/**" PackagePath="buildTransitive" Pack="true" />
<None Include="build/**" PackagePath="build" Pack="true" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.TrxReport.props" />
<ItemGroup>
<!--
!!! IMPORTANT !!!
DO NOT CHANGE THE GUID, IT'S A WELL KNOWN EXTENSION POINT AND THIS EXTENSION NEEDS TO BE REGISTERED AT THE END
WE HAVE CODE INSIDE THE TASK 'TestingPlatformEntryPoint' TO ENSURE THE ORDER OF THE REGISTRATION BASED ON THIS GUID
-->
<TestingPlatformBuilderHook Include="2006B3F7-93D2-4D9C-9C69-F41A1F21C9C7" >
<DisplayName>Microsoft.Testing.Extensions.TrxReport</DisplayName>
<TypeFullName>Microsoft.Testing.Extensions.TrxReport.TestingPlatformBuilderHook</TypeFullName>
</TestingPlatformBuilderHook>
</ItemGroup>
</Project>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<Project>
<Import Project="$(MSBuildThisFileDirectory)..\..\buildMultiTargeting\Microsoft.Testing.Extensions.TrxReport.props" />
<Import Project="$(MSBuildThisFileDirectory)..\build\Microsoft.Testing.Extensions.TrxReport.props" />
</Project>
Loading