Skip to content

Commit

Permalink
fixing build warnings. (dotnet#3085)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfilipi authored Mar 25, 2019
1 parent 5f9be36 commit 3969316
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,16 +79,16 @@ public static void Example()
// The original value of the 36205 category is MLB
}

private class DataPoint
public class DataPoint
{
public string Category;
public uint Age;
public string Category { get; set; }
public uint Age { get; set; }
}

private class TransformedDataPoint : DataPoint
public class TransformedDataPoint : DataPoint
{
public uint CategoryHashed;
public uint AgeHashed;
public uint CategoryHashed { get; set; }
public uint AgeHashed { get; set; }
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<OutputType>Exe</OutputType>
<WarningsNotAsErrors>649</WarningsNotAsErrors>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 3969316

Please sign in to comment.