diff --git a/lib/manager/nuget/__fixtures__/msbuild-sdk-files/global.1.json b/lib/manager/nuget/__fixtures__/msbuild-sdk-files/global.1.json
new file mode 100644
index 0000000000000000000000000000000000000000..a823f049f252f413b23ab4ee6173e69cd94abf32
--- /dev/null
+++ b/lib/manager/nuget/__fixtures__/msbuild-sdk-files/global.1.json
@@ -0,0 +1,6 @@
+{
+  "sdk": {
+    "version": "5.0.302",
+    "rollForward": "latestMajor"
+  }
+}
diff --git a/lib/manager/nuget/extract.spec.ts b/lib/manager/nuget/extract.spec.ts
index 59099efb8d6c5f3ba2c7d66b099d075f92ff1317..69fa7982637ca850e8a61a726c66f1199e2bb2b7 100644
--- a/lib/manager/nuget/extract.spec.ts
+++ b/lib/manager/nuget/extract.spec.ts
@@ -117,25 +117,41 @@ describe('manager/nuget/extract', () => {
     it('extracts msbuild-sdks from global.json', async () => {
       const packageFile = 'msbuild-sdk-files/global.json';
       const contents = loadFixture(packageFile);
-      expect(await extractPackageFile(contents, packageFile, config))
-        .toMatchInlineSnapshot(`
-        Object {
-          "deps": Array [
-            Object {
-              "currentValue": "5.0.302",
-              "depName": "dotnet-sdk",
-              "depType": "dotnet-sdk",
-              "skipReason": "unsupported-datasource",
-            },
-            Object {
-              "currentValue": "0.2.0",
-              "datasource": "nuget",
-              "depName": "YoloDev.Sdk",
-              "depType": "msbuild-sdk",
-            },
-          ],
-        }
-      `);
+      expect(
+        await extractPackageFile(contents, packageFile, config)
+      ).toMatchObject({
+        deps: [
+          {
+            currentValue: '5.0.302',
+            depName: 'dotnet-sdk',
+            depType: 'dotnet-sdk',
+            skipReason: 'unsupported-datasource',
+          },
+          {
+            currentValue: '0.2.0',
+            datasource: 'nuget',
+            depName: 'YoloDev.Sdk',
+            depType: 'msbuild-sdk',
+          },
+        ],
+      });
+    });
+
+    it('extracts dotnet-sdk from global.json', async () => {
+      const packageFile = 'msbuild-sdk-files/global.1.json';
+      const contents = loadFixture(packageFile);
+      expect(
+        await extractPackageFile(contents, 'global.json', config)
+      ).toMatchObject({
+        deps: [
+          {
+            currentValue: '5.0.302',
+            depName: 'dotnet-sdk',
+            depType: 'dotnet-sdk',
+            skipReason: 'unsupported-datasource',
+          },
+        ],
+      });
     });
 
     it('handles malformed global.json', async () => {
diff --git a/lib/manager/nuget/extract/global-manifest.ts b/lib/manager/nuget/extract/global-manifest.ts
index 48fe0a1939adbaf4a4255eecf3dbaa897c67d92f..47edd02b474b4101c8db6db3213f1ab002281574 100644
--- a/lib/manager/nuget/extract/global-manifest.ts
+++ b/lib/manager/nuget/extract/global-manifest.ts
@@ -35,16 +35,18 @@ export function extractMsbuildGlobalManifest(
     });
   }
 
-  for (const depName of Object.keys(manifest['msbuild-sdks'])) {
-    const currentValue = manifest['msbuild-sdks'][depName];
-    const dep: PackageDependency = {
-      depType: 'msbuild-sdk',
-      depName,
-      currentValue,
-      datasource: datasourceNuget.id,
-    };
+  if (manifest['msbuild-sdks']) {
+    for (const depName of Object.keys(manifest['msbuild-sdks'])) {
+      const currentValue = manifest['msbuild-sdks'][depName];
+      const dep: PackageDependency = {
+        depType: 'msbuild-sdk',
+        depName,
+        currentValue,
+        datasource: datasourceNuget.id,
+      };
 
-    deps.push(dep);
+      deps.push(dep);
+    }
   }
 
   return { deps };
diff --git a/lib/manager/nuget/readme.md b/lib/manager/nuget/readme.md
index fe57c0fb21e79696f1b97438249f1c0c1f1c2323..d8d14edd29bc8c526866e6e061b16b81bd45c927 100644
--- a/lib/manager/nuget/readme.md
+++ b/lib/manager/nuget/readme.md
@@ -1,3 +1,5 @@
 The `nuget` configuration object is used to control settings for the NuGet package manager.
-The NuGet package manager supports a SDK-style `.csproj`/`.fsproj`/`.vbproj` format, as described [here](https://natemcmaster.com/blog/2017/03/09/vs2015-to-vs2017-upgrade/).
-This means that .NET Core projects are all supported but any .NET Framework projects need to be updated to the new `.csproj`/`.fsproj`/`.vbproj` format in order to be detected and supported by Renovate.
+The NuGet package manager supports a SDK-style `.csproj`/`.fsproj`/`.vbproj`/`.props`/`.targets` format, as described [here](https://natemcmaster.com/blog/2017/03/09/vs2015-to-vs2017-upgrade/).
+This means that .NET Core projects are all supported but any .NET Framework projects need to be updated to the new `.csproj`/`.fsproj`/`.vbproj`/`.props`/`.targets` format in order to be detected and supported by Renovate.
+
+The NuGet manager also supports `global.json` and `.config/dotnet-tools.json` SDK files.
diff --git a/lib/manager/nuget/types.ts b/lib/manager/nuget/types.ts
index eae8865e24fa4001e7e0bd9c45f80186326ebb0e..e4cbfd60f14968b1fe09a7d12fb4ad15027c4eeb 100644
--- a/lib/manager/nuget/types.ts
+++ b/lib/manager/nuget/types.ts
@@ -16,8 +16,8 @@ export interface Registry {
 }
 
 export interface MsbuildGlobalManifest {
-  readonly sdk: MsbuildSdk;
-  readonly 'msbuild-sdks': Record<string, string>;
+  readonly sdk?: MsbuildSdk;
+  readonly 'msbuild-sdks'?: Record<string, string>;
 }
 
 export interface MsbuildSdk {