24 lines
940 B
XML
24 lines
940 B
XML
<Project>
|
|
<ItemGroup>
|
|
<PackageLineup Include="Internal.AspNetCore.Universe.Lineup" Version="2.1.0-*" />
|
|
<PackageLineup Include="Internal.AspNetCore.Partners.Lineup" Version="2.1.0-*" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<NuGetPublishFeed>https://dotnet.myget.org/f/aspnetcore-ci-dev</NuGetPublishFeed>
|
|
</PropertyGroup>
|
|
|
|
<!--
|
|
If this build has a .deps dir supplied by the CI system, use that (and *only* that)
|
|
// to obtain the package lineup. This ensures we're building and testing against the
|
|
// specific Coherence build that this Templating repo build is chained to.
|
|
-->
|
|
<PropertyGroup Condition="Exists('$(RepositoryRoot).deps\lineups')">
|
|
<PolicyRestoreSources>$(RepositoryRoot).deps\lineups</PolicyRestoreSources>
|
|
</PropertyGroup>
|
|
<ItemGroup Condition="Exists('$(RepositoryRoot).deps\build')">
|
|
<AdditionalRestoreSources Include="$(RepositoryRoot).deps\build" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|