mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-09 17:44:48 +09:00

* Run libraries package testing on build agent instead of on Helix as with recent changes the entire package testing doesn't take more than 2 minutes. Helix created a work item per package test even though it only took seconds and the average wait time for a client was 10-15min. Also cleaning up how the generated package test projects are restored and incorporating a fix from Eric St John to not hard code the package feeds. * Expose useHelix argument
21 lines
1.1 KiB
XML
21 lines
1.1 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<!-- Unset the repo tool manifest property in CI as we don't use repo tools there anyway,
|
|
until https://github.com/dotnet/sdk/issues/10938 is fixed. -->
|
|
<_RepoToolManifest Condition="'$(ContinuousIntegrationBuild)' == 'true'" />
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.DotNet.Build.Tasks.Packaging" Version="$(MicrosoftDotNetBuildTasksPackagingVersion)" />
|
|
<!-- enable source link in pkgproj -->
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="$(MicrosoftSourceLinkVersion)" PrivateAssets="all" IsImplicitlyDefined="true" />
|
|
<PackageReference Include="Microsoft.SourceLink.AzureRepos.Git" Version="$(MicrosoftSourceLinkVersion)" PrivateAssets="all" IsImplicitlyDefined="true" />
|
|
</ItemGroup>
|
|
|
|
<!-- excluded from source build -->
|
|
<ItemGroup Condition="'$(DotNetBuildFromSource)' != 'true'">
|
|
<PackageReference Include="Microsoft.DotNet.Build.Tasks.Feed" Version="$(MicrosoftDotNetBuildTasksFeedVersion)" />
|
|
<PackageReference Include="Microsoft.DotNet.VersionTools.Tasks" Version="$(MicrosoftDotNetVersionToolsTasksVersion)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|