JavaScriptServices 246 B

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