Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolayPianikov committed Nov 20, 2024
1 parent a0f62a7 commit 84cf3b6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CSharpInteractive.Tests/CSharpInteractive.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="Pure.DI" Version="2.1.38">
<PackageReference Include="Pure.DI" Version="2.1.39">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion CSharpInteractive/CSharpInteractive.Tool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Scripting" Version="4.12.0-3.final" />
<PackageReference Include="Pure.DI" Version="2.1.38">
<PackageReference Include="Pure.DI" Version="2.1.39">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion CSharpInteractive/CSharpInteractive.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Scripting" Version="4.12.0-3.final" />
<PackageReference Include="Pure.DI" Version="2.1.38">
<PackageReference Include="Pure.DI" Version="2.1.39">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion CSharpInteractive/Composition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ private static void Setup()
.Bind(InteractionMode.NonInteractive).To<ScriptRunner>()
.Bind().To<CommandSource>()
.Bind().To<Setting<TTE>>()
.Bind(Tag.Type).Bind<IReferenceRegistry>().To<ReferencesScriptOptionsFactory>()
#endif
#if APPLICATION
.Bind().As(Lifetime.Transient).To(_ => RunningMode.Application)
Expand Down Expand Up @@ -173,7 +174,6 @@ private static void Setup()
.Bind().To<NuGetReferenceResolver>()
.Bind().To<ScriptContentReplacer>()
.Bind(Tag.Type).To<AssembliesScriptOptionsProvider>()
.Bind(Tag.Type).Bind<IReferenceRegistry>().To<ReferencesScriptOptionsFactory>()
.Bind(Tag.Type).To<SourceFileScriptOptionsFactory>()
.Bind(Tag.Type).To<MetadataResolverOptionsFactory>()
.Bind(Tag.Type).To<ImportsOptionsFactory>()
Expand Down

0 comments on commit 84cf3b6

Please sign in to comment.