From 7ab5e860c3852bf4c14003955215e991df6bb201 Mon Sep 17 00:00:00 2001 From: Markus Ewald Date: Tue, 24 Jun 2025 11:41:39 +0200 Subject: [PATCH] Fixed outdated comment --- Properties/AssemblyInfo.cs | 2 +- Source/DependencyInjectedWindowManager.cs | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 9700854..584d3d6 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -45,4 +45,4 @@ using System.Runtime.InteropServices; // Build Number // Revision // -[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.2.1.0")] diff --git a/Source/DependencyInjectedWindowManager.cs b/Source/DependencyInjectedWindowManager.cs index 6cb9e59..0043057 100644 --- a/Source/DependencyInjectedWindowManager.cs +++ b/Source/DependencyInjectedWindowManager.cs @@ -103,9 +103,8 @@ namespace Nuclex.Windows.Forms.DependencyInjection { return this.serviceProvider.GetRequiredService(type); } - /// Creates an instance of the specified type in a new scope - /// Type an instance will be created of - /// The created instance and the scope in which it lives + /// Creates a new scope in which window-specific services will live + /// The new scope managing the lifetime of window-specific services protected override IWindowScope CreateWindowScope() { return new WindowScope(this.serviceProvider); }