Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PSYaml.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion PSYaml.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -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"

}

Expand Down