mirror of
https://github.com/NexusOne23/noid-privacy.git
synced 2026-02-07 04:01:52 +01:00
38 lines
1.2 KiB
PowerShell
38 lines
1.2 KiB
PowerShell
@{
|
|
# Module manifest for DNS module
|
|
|
|
RootModule = 'DNS.psm1'
|
|
ModuleVersion = '2.2.2'
|
|
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'
|
|
}
|
|
}
|
|
}
|