Skip to content

Commit

Permalink
[.NET] Updated obsolete messages (#3529)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoo-msft authored and shalinijoshi19 committed Nov 1, 2019
1 parent dc90532 commit 3721fc6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ public class AdaptiveHostConfig : AdaptiveConfigBase
public FactSetConfig FactSet { get; set; } = new FactSetConfig();

[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
[Obsolete("AdaptiveHostConfig.FontFamily has been deprecated. Use AdaptiveHostConfig.FontStyles.Default.FontFamily", false)]
[Obsolete("AdaptiveHostConfig.FontFamily has been deprecated. Use AdaptiveHostConfig.FontTypes.Default.FontFamily", false)]
public string FontFamily { get; set; }

[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
[Obsolete("AdaptiveHostConfig.FontSizes has been deprecated. Use AdaptiveHostConfig.FontStyles.Default.FontSizes", false)]
[Obsolete("AdaptiveHostConfig.FontSizes has been deprecated. Use AdaptiveHostConfig.FontTypes.Default.FontSizes", false)]
public FontSizesConfig FontSizes { get; set; } = new FontSizesConfig();

[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
[Obsolete("AdaptiveHostConfig.FontWeights has been deprecated. Use AdaptiveHostConfig.FontStyles.Default.FontWeights", false)]
[Obsolete("AdaptiveHostConfig.FontWeights has been deprecated. Use AdaptiveHostConfig.FontTypes.Default.FontWeights", false)]
public FontWeightsConfig FontWeights { get; set; } = new FontWeightsConfig();

[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
Expand Down

0 comments on commit 3721fc6

Please sign in to comment.