| 12345678910111213141516171819202122232425 |
- commit bd5793e28491d6328e87bdd2983936a55bfd4655
- Author: Pranav K <[email protected]>
- Date: Wed Nov 29 14:09:27 2017 -0800
- Specify runtime versions to install
- diff --git a/build/repo.props b/build/repo.props
- index 07c5f083252..78b0ce58790 100644
- --- a/build/repo.props
- +++ b/build/repo.props
- @@ -1,7 +1,14 @@
- <Project>
- + <Import Project="dependencies.props" />
- +
- <PropertyGroup>
- <!-- These properties are use by the automation that updates dependencies.props -->
- <LineupPackageId>Internal.AspNetCore.Universe.Lineup</LineupPackageId>
- <LineupPackageRestoreSource>https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json</LineupPackageRestoreSource>
- </PropertyGroup>
- +
- + <ItemGroup>
- + <DotNetCoreRuntime Include="$(MicrosoftNETCoreApp20PackageVersion)" />
- + <DotNetCoreRuntime Include="$(MicrosoftNETCoreApp21PackageVersion)" />
- + </ItemGroup>
- </Project>
|