/*
* Copyright (c) 2014-2015, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
namespace React
{
///
/// An implementation of that does not do any mapping of file paths.
///
public class SimpleFileSystem : FileSystemBase
{
///
/// Converts a path from an application relative path (~/...) to a full filesystem path
///
/// App-relative path of the file
/// Full path of the file
public override string MapPath(string relativePath)
{
return relativePath;
}
}
}