Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix incorrect YAML.net nuget path #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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