From f47cc622cd511fb1502e5f2cabeb3f4ac1ea79ae Mon Sep 17 00:00:00 2001 From: Jeff Sharp Date: Sat, 11 May 2024 10:53:44 -0500 Subject: [PATCH] Fix assembly loading error on PowerShell 7.2. --- PSql/PSql.psd1.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PSql/PSql.psd1.t b/PSql/PSql.psd1.t index 404fe2d..1dea3b4 100644 --- a/PSql/PSql.psd1.t +++ b/PSql/PSql.psd1.t @@ -1,4 +1,4 @@ -# Copyright 2023 Subatomix Research Inc. +# Copyright 2024 Subatomix Research Inc. # SPDX-License-Identifier: ISC @{ # Identity @@ -16,7 +16,7 @@ CompatiblePSEditions = 'Core' PowerShellVersion = '7.2' #RequiredModules = @(...) - RequiredAssemblies = @("PSql.Core") + RequiredAssemblies = @("PSql.Core.dll") # Initialization #ScriptsToProcess = @(...)