Skip to content

Commit 8eeff04

Browse files
committed
Fixed expression bodied properties
1 parent 0889665 commit 8eeff04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/CommandLine/BaseAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public bool Hidden
135135
/// </summary>
136136
public Type ResourceType
137137
{
138-
get => resourceType;
138+
get { return resourceType; }
139139
set
140140
{
141141
resourceType =

src/CommandLine/Infrastructure/LocalizableAttributeProperty.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public LocalizableAttributeProperty(string propertyName)
2020

2121
public string Value
2222
{
23-
get => GetLocalizedValue();
23+
get { return GetLocalizedValue(); }
2424
set
2525
{
2626
_localizationPropertyInfo = null;

0 commit comments

Comments
 (0)