Skip to content

Commit

Permalink
Merge branch 'release/1.0.0.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
amitailanciano committed May 11, 2016
2 parents fbf21c6 + 8f3f3c2 commit fefafb0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Lanayo.VagrantManager/Core/Providers/VirtualBoxMachineInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ public VirtualBoxMachineInfo(string infoString) {
if (name.StartsWith("SharedFolderNameMachineMapping")) {
sharedFolders[mappingId]["name"] = value;
} else if(name.StartsWith("SharedFolderPathMachineMapping")) {
if (value.StartsWith(@"\\?\")) {
value = value.Substring(4);
}
sharedFolders[mappingId]["path"] = new DirectoryInfo(value).FullName;
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion Lanayo.VagrantManager/Lanayo.Vagrant_Manager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>4</ApplicationRevision>
<ApplicationRevision>5</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
Expand Down
4 changes: 2 additions & 2 deletions Lanayo.VagrantManager/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.4")]
[assembly: AssemblyFileVersion("1.0.0.4")]
[assembly: AssemblyVersion("1.0.0.5")]
[assembly: AssemblyFileVersion("1.0.0.5")]

0 comments on commit fefafb0

Please sign in to comment.