diff --git a/PSYaml.psd1 b/PSYaml.psd1 index b09eb9f..93d7b9b 100644 --- a/PSYaml.psd1 +++ b/PSYaml.psd1 @@ -17,7 +17,7 @@ ModuleToProcess = 'PSYaml.psm1' # Version number of this module. -ModuleVersion = '1.0.0.1' +ModuleVersion = '1.0.0.2' # ID used to uniquely identify this module GUID = 'b8eb2cda-f09b-4c5d-bf3d-f03d212f0a81' diff --git a/PSYaml.psm1 b/PSYaml.psm1 index 0b9e5c7..58c9125 100644 --- a/PSYaml.psm1 +++ b/PSYaml.psm1 @@ -41,7 +41,7 @@ function Initialize-PsYAML_Module #now get the latest version of YAMLdotNet that we have $CurrentRelease = Get-ChildItem | where { $_.PSIsContainer } | sort CreationTime -desc | select -f 1 pop-location - Add-Type -Path "$YAMLDotNetLocation\YAMLDotNet\$CurrentRelease\lib\dotnet\yamldotnet.dll" + Add-Type -Path "$YAMLDotNetLocation\YAMLDotNet\$CurrentRelease\lib\portable-net45+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1\yamldotnet.dll" }