Skip to content

Commit ce19192

Browse files
committed
nuget bump
1 parent e6a9c07 commit ce19192

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

Directory.Packages.props

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
<Project>
22
<ItemGroup>
3-
<PackageVersion Include="GitVersion.MsBuild" Version="6.0.5" />
4-
<PackageVersion Include="Noggog.CSharpExt" Version="2.70.0-alpha.11" />
5-
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.11.0" />
6-
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
3+
<PackageVersion Include="GitVersion.MsBuild" Version="6.1.0">
4+
<PrivateAssets>all</PrivateAssets>
5+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
6+
</PackageVersion>
7+
<PackageVersion Include="Noggog.CSharpExt" Version="2.70.0-alpha.23" />
8+
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" />
9+
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
710
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
811
<PackageVersion Include="System.Linq.Async" Version="6.0.1" />
9-
<PackageVersion Include="xunit" Version="2.9.2" />
10-
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2">
12+
<PackageVersion Include="xunit" Version="2.9.3" />
13+
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.1">
1114
<PrivateAssets>all</PrivateAssets>
1215
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1316
</PackageVersion>

Loqui/Translators/Translator.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ public abstract class Translator<ObjTransl>
99
public GetResponse<ObjTransl> NullTranslationItem;
1010
public Type? NullType = default;
1111

12-
public Dictionary<Type, GetResponse<ObjTransl>> typeDict = new Dictionary<Type, GetResponse<ObjTransl>>();
13-
public HashSet<Type> GenericTypes = new HashSet<Type>();
12+
public Dictionary<Type, GetResponse<ObjTransl>> typeDict = new();
13+
public HashSet<Type> GenericTypes = new();
1414

1515
private Type genericCaster;
1616
private Type loquiTranslation;

0 commit comments

Comments
 (0)