DSCResources/SynergyDEIntegration/SynergyDEIntegration.psm1

DATA localizedData
{
    #culture en-US

}

# Import the common Synergy functions
Import-Module -Name ( Join-Path `
    -Path(Split-Path -Path $PSSCriptRoot -Parent) `
    -ChildPath `\SynergyInstallCommon\SynergyInstallCommon.psm1)

function Set-TargetResource
{
    [CmdletBinding()]
    param
    (
        # Installation asset location
        [Parameter(Mandatory = $true)]
        [String]
        $InstallerFile,

        # Should Visual Studio Support be installed
        [Parameter()]
        [ValidateSet('Present', 'Absent')]
        [String]
        $VisualStudioSupport = 'Present'
    )
}

Export-ModuleMember -Function *-TargetResource