Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions ModuleManifest/SimplySql.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Mithrandyr
#
# Generated on: 12/12/2024
# Generated on: 11/13/2025
#

@{
Expand All @@ -12,7 +12,7 @@
RootModule = 'SimplySql.Cmdlets.dll'

# Version number of this module.
ModuleVersion = '2.1.0.96'
ModuleVersion = '2.1.0.97'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -40,20 +40,20 @@ Get/Clear -SqlMessage >> Get Informational messages, if provider supports it.
Invoke-SqlBulkCopy >> Bulk Dataload from one connection to another.
Start/Complete/Undo -SqlTransaction >> Utilize transactions!'

# Minimum version of the Windows PowerShell engine required by this module
# Minimum version of the PowerShell engine required by this module
PowerShellVersion = '5.0'

# Name of the Windows PowerShell host required by this module
# Name of the PowerShell host required by this module
# PowerShellHostName = ''

# Minimum version of the Windows PowerShell host required by this module
# Minimum version of the PowerShell host required by this module
# PowerShellHostVersion = ''

# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# DotNetFrameworkVersion = ''

# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
# CLRVersion = ''
# ClrVersion = ''

# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''
Expand Down
2 changes: 1 addition & 1 deletion default.build.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
param([version]$Version, [switch]$CommitRevision, [ValidateSet("Major", "Minor", "Build")][string]$Increment)
New-Alias -Name HV -Value (Resolve-Path HandleVerbose.ps1)
New-Alias -Name HV -Value (Resolve-Path HandleVerbose.ps1) -Force

if(-not $version) {
$Script:Version = [Version](Import-PowerShellDataFile -Path "ModuleManifest\SimplySql.psd1")["ModuleVersion"]
Expand Down
3 changes: 2 additions & 1 deletion source/source.build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ $Script:envList = @(
[PSCustomObject]@{framework="net6.0"; env="win-x64"; output="output\bin\PS7\win-x64"}
[PSCustomObject]@{framework="net6.0"; env="linux-x64"; output="output\bin\PS7\linux-x64"}
[PSCustomObject]@{framework="net6.0"; env="osx-x64"; output="output\bin\PS7\osx-x64"}
[PSCustomObject]@{framework="net6.0"; env="osx-arm64"; output="output\bin\PS7\osx-arm64"}
)

function dedup([string]$Path) {
Expand All @@ -23,7 +24,7 @@ function dedup([string]$Path) {
$safeFiles = @{}
$first = $list[0]
Write-Host " --$($first | Split-Path -Leaf)" -NoNewline
Get-ChildItem -Path $first |
Get-ChildItem -Path $first -File |
Where-Object Name -ne "System.Data.SQLite.dll" | #always exclude this SQLite dll because of native interop binding
Where-Object Name -ne "SQLite.Interop.dll" | #always exclude this SQLite dll because of native interop binding
Get-FileHash |
Expand Down