From a37a2b03f6b5efae98148ccd8e5ce6e73a6106a9 Mon Sep 17 00:00:00 2001
From: John Luo <johluo@microsoft.com>
Date: Thu, 5 Sep 2019 17:43:46 -0700
Subject: [PATCH] Pin SDK to preview 8 in source build (#13707)

- There are issues with NU5048 and NU5128. We need to handle ProjectIconUrl deprecation and issues with NuspecProperty not being set separately.
---
 .azure/pipelines/ci.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.azure/pipelines/ci.yml b/.azure/pipelines/ci.yml
index 67d59a247fc..0a4e281655e 100644
--- a/.azure/pipelines/ci.yml
+++ b/.azure/pipelines/ci.yml
@@ -510,7 +510,9 @@ jobs:
       # The SDK version selected here is intentionally supposed to use the latest release
       # For the purpose of building Linux distros, we can't depend on features of the SDK
       # which may not exist in pre-built versions of the SDK
-      version: 3.0.x
+      # Pinning to preview 8 since preview 9 has breaking changes
+      # version: 3.0.x
+      version: 3.0.100-preview8-013656
       installationPath: $(DotNetCoreSdkDir)
       includePreviewVersions: true
   - script: ./eng/scripts/ci-source-build.sh --ci --configuration Release /p:BuildManaged=true /p:BuildNodeJs=false
-- 
GitLab