mirror of
https://github.com/NexusOne23/noid-privacy.git
synced 2026-04-06 07:47:21 +02:00
Some checks failed
CI - PowerShell Quality Checks / PSScriptAnalyzer (push) Has been cancelled
CI - PowerShell Quality Checks / Test on PowerShell 5.1 (push) Has been cancelled
CI - PowerShell Quality Checks / Test on PowerShell 7.4 (push) Has been cancelled
CI - PowerShell Quality Checks / Validate Project Structure (push) Has been cancelled
Pester Tests / test (push) Has been cancelled
Version bump across 62 files (2.2.3 → 2.2.4). CHANGELOG.md: New [2.2.4] section with EDR/XDR detection and version tooling. README.md: Updated release highlights, AV detection example output synced with code. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
38 lines
1.2 KiB
PowerShell
38 lines
1.2 KiB
PowerShell
@{
|
|
# Module manifest for DNS module
|
|
|
|
RootModule = 'DNS.psm1'
|
|
ModuleVersion = '2.2.4'
|
|
GUID = 'a8f7b3c9-4e5d-4a2b-9c1d-8f3e5a7b9c2d'
|
|
Author = 'NexusOne23'
|
|
CompanyName = 'Open Source Project'
|
|
Copyright = '(c) 2025 NexusOne23. Licensed under GPL-3.0.'
|
|
Description = 'Secure DNS configuration module with DoH support for Cloudflare, Quad9, and AdGuard DNS providers'
|
|
|
|
PowerShellVersion = '5.1'
|
|
|
|
# Functions to export from this module
|
|
FunctionsToExport = @(
|
|
'Invoke-DNSConfiguration',
|
|
'Get-DNSStatus',
|
|
'Restore-DNSSettings'
|
|
)
|
|
|
|
# Cmdlets to export from this module
|
|
CmdletsToExport = @()
|
|
|
|
# Variables to export from this module
|
|
VariablesToExport = @()
|
|
|
|
# Aliases to export from this module
|
|
AliasesToExport = @()
|
|
|
|
PrivateData = @{
|
|
PSData = @{
|
|
Tags = @('DNS', 'DoH', 'Security', 'Privacy', 'Cloudflare', 'Quad9', 'AdGuard')
|
|
LicenseUri = ''
|
|
ProjectUri = ''
|
|
ReleaseNotes = 'Initial release with DoH support for 3 major DNS providers'
|
|
}
|
|
}
|
|
}
|