File tree Expand file tree Collapse file tree 5 files changed +7
-6
lines changed
AsyncGenerator.CommandLine
AsyncGenerator.Configuration.Yaml Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1717 <ToolTargetFrameworks Condition =" $(ToolTargetFrameworks) == ''" >netcoreapp3.1;net5.0;net6.0</ToolTargetFrameworks >
1818 <MicrosoftCodeAnalysisVersion >3.11.0</MicrosoftCodeAnalysisVersion >
1919 <MicrosoftBuildLocatorVersion >1.4.1</MicrosoftBuildLocatorVersion >
20+ <SQLitePCLRawVersion >2.1.1</SQLitePCLRawVersion >
2021 </PropertyGroup >
2122</Project >
Original file line number Diff line number Diff line change 6464 <PackageReference Include =" System.Threading.Tasks.Dataflow" Version =" 4.6.0" >
6565 <PrivateAssets >all</PrivateAssets >
6666 </PackageReference >
67- <PackageReference Include =" SQLitePCLRaw.core" Version =" 2.0.7 " > <!-- Needed for mono 5.16+ -->
67+ <PackageReference Include =" SQLitePCLRaw.core" Version =" $(SQLitePCLRawVersion) " > <!-- Needed for mono 5.16+ -->
6868 <PrivateAssets >all</PrivateAssets >
6969 </PackageReference >
7070 </ItemGroup >
Original file line number Diff line number Diff line change 1111 </PropertyGroup >
1212
1313 <ItemGroup >
14- <PackageReference Include =" YamlDotNet" Version =" 6 .0.0" />
14+ <PackageReference Include =" YamlDotNet" Version =" 12 .0.0" />
1515 </ItemGroup >
1616
1717 <ItemGroup >
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public override Core.FileConfiguration.AsyncGenerator Parse(string content)
1414 private static T Deserialize < T > ( string content )
1515 {
1616 var deserializer = new DeserializerBuilder ( )
17- . WithNamingConvention ( new CamelCaseNamingConvention ( ) )
17+ . WithNamingConvention ( CamelCaseNamingConvention . Instance )
1818 . Build ( ) ;
1919 return deserializer . Deserialize < T > ( content ) ;
2020 }
Original file line number Diff line number Diff line change 2626 <PackageReference Include =" Microsoft.Extensions.Logging.Configuration" Version =" 6.0.0" />
2727 <PackageReference Include =" Microsoft.Extensions.Logging.Console" Version =" 6.0.0" />
2828 <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 16.2.0" />
29- <PackageReference Include =" NUnit" Version =" 3.13.2" />
30- <PackageReference Include =" NUnit3TestAdapter" Version =" 4.1.0" />
3129 <PackageReference Include =" Microsoft.Build.Locator" Version =" $(MicrosoftBuildLocatorVersion)" />
30+ <PackageReference Include =" NUnit" Version =" 3.13.3" />
31+ <PackageReference Include =" NUnit3TestAdapter" Version =" 4.2.1" />
3232 <PackageReference Include =" System.Interactive.Async" Version =" 4.1.1" />
3333 <!-- https://stackoverflow.com/a/73422940 -->
3434 <PackageReference Include =" System.Memory" Version =" 4.5.5" />
3737 <ItemGroup Condition =" '$(TargetFramework)' == 'net472'" >
3838 <Reference Include =" System.Transactions" />
3939 <PackageReference Include =" System.Threading.Tasks.Dataflow" Version =" 4.6.0" />
40- <PackageReference Include =" SQLitePCLRaw.core" Version =" 2.0.7 " /> <!-- Needed for MONO 5.16+ -->
40+ <PackageReference Include =" SQLitePCLRaw.core" Version =" $(SQLitePCLRawVersion) " /> <!-- Needed for MONO 5.16+ -->
4141 </ItemGroup >
4242
4343 <ItemGroup Condition =" '$(TargetFramework)' != 'net472'" >
You can’t perform that action at this time.
0 commit comments