Commit d471cf5b authored by David McFarland's avatar David McFarland
Browse files

azure-functions-core-tools: use runtime packages from sdk

This fixes a build failure when updating the SDK (e.g. #499865).
parent 32157697
Loading
Loading
Loading
Loading
+0 −596

File changed.

Preview size limit exceeded, changes collapsed.

+10 −1
Original line number Diff line number Diff line
@@ -30,7 +30,16 @@ buildDotnetModule {
  executables = [ "func" ];

  nugetDeps = ./deps.json;
  dotnet-sdk = dotnetCorePackages.sdk_10_0;
  dotnet-sdk = dotnetCorePackages.sdk_10_0 // {
    inherit
      (dotnetCorePackages.combinePackages [
        dotnetCorePackages.sdk_9_0
        dotnetCorePackages.sdk_8_0
      ])
      packages
      targetPackages
      ;
  };
  nativeBuildInputs = [ go ];

  linkNuGetPackagesAndSources = true;