Skip to content

Commit 7cc377b

Browse files
Update deps
1 parent 0188a9d commit 7cc377b

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

Immutype.Tests/Immutype.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<ItemGroup>
1212
<ProjectReference Include="..\Immutype\Immutype.csproj" />
1313
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
14-
<PackageReference Include="xunit" Version="2.9.2" />
15-
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
14+
<PackageReference Include="xunit" Version="2.9.3" />
15+
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.1">
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
<PrivateAssets>all</PrivateAssets>
1818
</PackageReference>

Immutype.UsageScenarios.Tests/Immutype.UsageScenarios.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
<CompilerVisibleProperty Include="ImmutypeAPI" />
1515
<ProjectReference Include="..\Immutype\Immutype.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
1616
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
17-
<PackageReference Include="xunit" Version="2.9.2" />
18-
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
17+
<PackageReference Include="xunit" Version="2.9.3" />
18+
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.1">
1919
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2020
<PrivateAssets>all</PrivateAssets>
2121
</PackageReference>

Immutype/Composition.cs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ private static void Setup() => DI.Setup()
1919
ITypeSyntaxFilter SyntaxFilter)>(nameof(Root))
2020

2121
.DefaultLifetime(PerBlock)
22-
.Bind().To<SourceBuilder>()
23-
.Bind().To<SyntaxNodeFactory>()
24-
.Bind().To<NameService>()
25-
.Bind().To<ExtensionsFactory>()
26-
.Bind().To<MethodsFactory>()
27-
.Bind().To<DataContainerFactory>()
28-
.Bind(Unique).To<MethodWithFactory>()
29-
.Bind(Unique).To<MethodAddRemoveFactory>()
30-
.Bind().To<CommentsGenerator>()
31-
.Bind().To<Information>()
32-
.Bind().To<Comments>()
33-
.Bind().To<TypeSyntaxFilter>()
34-
.Bind().To<ComponentsBuilder>();
22+
.Bind().To<SourceBuilder>()
23+
.Bind().To<SyntaxNodeFactory>()
24+
.Bind().To<NameService>()
25+
.Bind().To<ExtensionsFactory>()
26+
.Bind().To<MethodsFactory>()
27+
.Bind().To<DataContainerFactory>()
28+
.Bind(Unique).To<MethodWithFactory>()
29+
.Bind(Unique).To<MethodAddRemoveFactory>()
30+
.Bind().To<CommentsGenerator>()
31+
.Bind().To<Information>()
32+
.Bind().To<Comments>()
33+
.Bind().To<TypeSyntaxFilter>()
34+
.Bind().To<ComponentsBuilder>();
3535
}

Immutype/Immutype.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<!-- Should be compatible with .NET 5.0.102+ and Visual Studio 16.8+ -->
3333
<!-- https://github.com/dotnet/roslyn/blob/main/docs/wiki/NuGet-packages.md#versioning -->
3434
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.3.1" PrivateAssets="all" />
35-
<PackageReference Include="Pure.DI" Version="2.1.44">
35+
<PackageReference Include="Pure.DI" Version="2.1.51">
3636
<PrivateAssets>all</PrivateAssets>
3737
<IncludeAssets>analyzers</IncludeAssets>
3838
</PackageReference>

0 commit comments

Comments
 (0)