Skip to content

Commit

Permalink
Bumps version
Browse files Browse the repository at this point in the history
  • Loading branch information
Shazwazza committed Jan 18, 2018
1 parent 71a75da commit 981f866
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
14 changes: 9 additions & 5 deletions ClientDependency.Core/CompositeFiles/Providers/XmlFileMapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,7 @@ public class XmlFileMapper : BaseFileMapProvider

[Obsolete("Use FileMapDefaultFolder instead")]
[EditorBrowsable(EditorBrowsableState.Never)]
public static string FileMapVirtualFolder
{
get { return FileMapDefaultFolder; }
set { FileMapDefaultFolder = value; }
}
public static string FileMapVirtualFolder = _fileMapFolder;

/// <summary>
/// Specifies the default folder to store the file map in, either absolute or virtual
Expand All @@ -65,6 +61,14 @@ public static string FileMapDefaultFolder

public XmlFileMapper()
{
//here we need to do a backwards compat check
if (FileMapVirtualFolder != _fileMapFolder)
{
//in this case, the legacy FileMapVirtualFolder was updated which means that we need to change
//the non-legacy FileMapDefaultFolder value
FileMapDefaultFolder = FileMapVirtualFolder;
}

FileMapFolder = FileMapDefaultFolder;
}

Expand Down
6 changes: 3 additions & 3 deletions SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
[assembly: AssemblyCulture("")]


[assembly: AssemblyVersion("1.9.4")]
[assembly: AssemblyFileVersion("1.9.4")]
[assembly: AssemblyInformationalVersion("1.9.4-beta02")]
[assembly: AssemblyVersion("1.9.5")]
[assembly: AssemblyFileVersion("1.9.5")]
[assembly: AssemblyInformationalVersion("1.9.5")]

0 comments on commit 981f866

Please sign in to comment.