Netscoot.Native/Netscoot.Native.psd1

@{
    RootModule           = 'Netscoot.Native.psm1'
    ModuleVersion        = '2.6.6'
    GUID                 = 'a04eb714-497e-477b-99d3-ea09801d7dc5'
    Author               = 'kappasims'
    Description          = 'Windows-only extension of Netscoot for native / C++/CLI (.vcxproj) projects. Moves the project folder, updates the solutions and projects that reference it while keeping GUIDs and platform mappings, and reports the native MSBuild path settings it does not rewrite.'
    PowerShellVersion    = '5.1'
    CompatiblePSEditions = @('Core', 'Desktop')
    # No RequiredModules: bundled into the single Netscoot package; the umbrella loads
    # NetscootShared (-Global) before this engine.
    FunctionsToExport    = @(
        'Move-NativeProject'
    )
    CmdletsToExport      = @()
    VariablesToExport    = @()
    AliasesToExport      = @()
    PrivateData          = @{
        PSData = @{
            Tags       = @('dotnet', 'cpp', 'vcxproj', 'native', 'refactoring', 'windows')
            ProjectUri = 'https://github.com/kappasims/netscoot'
        }
    }
}