/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
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;
}
}
}