forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RuntimeOptions.cs
31 lines (22 loc) · 898 Bytes
/
RuntimeOptions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace Microsoft.NET.Build.Tasks
{
internal class RuntimeOptions
{
public string Tfm { get; set; }
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
public string RollForward { get; set; }
public RuntimeConfigFramework Framework { get; set; }
public List<RuntimeConfigFramework> Frameworks { get; set; }
public List<RuntimeConfigFramework> IncludedFrameworks { get; set; }
public List<string> AdditionalProbingPaths { get; set; }
[JsonExtensionData]
public IDictionary<string, JToken> RawOptions { get; } = new Dictionary<string, JToken>();
public RuntimeOptions()
{
}
}
}