Skip to content

Commit

Permalink
YamlDotNet 5
Browse files Browse the repository at this point in the history
  • Loading branch information
Narazaka committed Dec 4, 2018
1 parent 33bf227 commit c62a213
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion seedtable/YamlData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ private static object ConvertDataTableWithYamlColumns(IEnumerable<Dictionary<str
);
}

private static object ConvertValueWithYamlColumns(Deserializer deserializer, Dictionary<string, object> value, IEnumerable<string> yamlColumnNames) {
private static object ConvertValueWithYamlColumns(IDeserializer deserializer, Dictionary<string, object> value, IEnumerable<string> yamlColumnNames) {
return value.ToDictionary(
pair => pair.Key,
pair => {
Expand Down
2 changes: 1 addition & 1 deletion seedtable/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
<package id="CommandLineParser" version="2.2.1" targetFramework="net461" />
<package id="DocumentFormat.OpenXml" version="2.8.1" targetFramework="net452" />
<package id="EPPlus" version="4.5.1" targetFramework="net452" />
<package id="YamlDotNet" version="4.3.1" targetFramework="net461" />
<package id="YamlDotNet" version="5.2.1" targetFramework="net452" />
</packages>
4 changes: 2 additions & 2 deletions seedtable/seedtable.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@
<Reference Include="System.Drawing" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Security" />
<Reference Include="YamlDotNet, Version=4.3.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\YamlDotNet.4.3.1\lib\net45\YamlDotNet.dll</HintPath>
<Reference Include="YamlDotNet, Version=5.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\YamlDotNet.5.2.1\lib\net45\YamlDotNet.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
Expand Down

0 comments on commit c62a213

Please sign in to comment.