-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Move globaljson in its own file
- Loading branch information
1 parent
9b8e93a
commit cddbb6b
Showing
2 changed files
with
24 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Linq; | ||
using System.Text.RegularExpressions; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
using NuGet.Common; | ||
using NuGet.Packaging.Core; | ||
using NvGet.Contracts; | ||
using NvGet.Entities; | ||
using NvGet.Extensions; | ||
using NuGet.Versioning; | ||
using Uno.Extensions; | ||
using Newtonsoft.Json; | ||
|
||
namespace NvGet.Helpers | ||
{ | ||
public class GlobalJson | ||
{ | ||
[JsonProperty("msbuild-sdks")] | ||
public Dictionary<string, string> MSBuildSdks { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters