Skip to content

Commit

Permalink
Update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
maca88 committed Sep 14, 2022
1 parent 69425d2 commit 8d09856
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions Common.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@
<ToolTargetFrameworks Condition ="$(ToolTargetFrameworks) == ''">netcoreapp3.1;net5.0;net6.0</ToolTargetFrameworks>
<MicrosoftCodeAnalysisVersion>3.11.0</MicrosoftCodeAnalysisVersion>
<MicrosoftBuildLocatorVersion>1.4.1</MicrosoftBuildLocatorVersion>
<SQLitePCLRawVersion>2.1.1</SQLitePCLRawVersion>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.6.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="SQLitePCLRaw.core" Version="2.0.7"> <!-- Needed for mono 5.16+ -->
<PackageReference Include="SQLitePCLRaw.core" Version="$(SQLitePCLRawVersion)"> <!-- Needed for mono 5.16+ -->
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="YamlDotNet" Version="6.0.0" />
<PackageReference Include="YamlDotNet" Version="12.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public override Core.FileConfiguration.AsyncGenerator Parse(string content)
private static T Deserialize<T>(string content)
{
var deserializer = new DeserializerBuilder()
.WithNamingConvention(new CamelCaseNamingConvention())
.WithNamingConvention(CamelCaseNamingConvention.Instance)
.Build();
return deserializer.Deserialize<T>(content);
}
Expand Down
6 changes: 3 additions & 3 deletions Source/AsyncGenerator.Tests/AsyncGenerator.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.1.0" />
<PackageReference Include="Microsoft.Build.Locator" Version="$(MicrosoftBuildLocatorVersion)" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="System.Interactive.Async" Version="4.1.1" />
<!-- https://stackoverflow.com/a/73422940 -->
<PackageReference Include="System.Memory" Version="4.5.5" />
Expand All @@ -37,7 +37,7 @@
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
<Reference Include="System.Transactions" />
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.6.0" />
<PackageReference Include="SQLitePCLRaw.core" Version="2.0.7" /> <!-- Needed for MONO 5.16+ -->
<PackageReference Include="SQLitePCLRaw.core" Version="$(SQLitePCLRawVersion)" /> <!-- Needed for MONO 5.16+ -->
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' != 'net472'">
Expand Down

0 comments on commit 8d09856

Please sign in to comment.