Skip to content

Commit 022cad0

Browse files
authored
Merge pull request #3274 from Jack251970/dependency_injection_installer
Fix dependency injection issue in installer
2 parents e299721 + e9688d1 commit 022cad0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Flow.Launcher/Flow.Launcher.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,9 @@
9090
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
9191
</PackageReference>
9292
<PackageReference Include="InputSimulator" Version="1.0.4" />
93-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
94-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
93+
<!-- Do not upgrade Microsoft.Extensions.DependencyInjection and Microsoft.Extensions.Hosting since we are .Net7.0 -->
94+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
95+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.0" />
9596
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" />
9697
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.106">
9798
<PrivateAssets>all</PrivateAssets>

0 commit comments

Comments
 (0)