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

IHostingEnvironment Updates #157

Open
JunTaoLuo opened this issue Mar 15, 2016 · 0 comments
Open

IHostingEnvironment Updates #157

JunTaoLuo opened this issue Mar 15, 2016 · 0 comments

Comments

@JunTaoLuo
Copy link

As part of our update to IHostingEnvironment we have made the following changes:

  • Added ApplicationName, ContentRootPath and ContentRootFileProvider.
  • Removed Configuration and MapPath(string virtualPath)

We aim to relocate the information we provided from IApplicationEnvironment to IHostingEnvironment. This means that the fields on IApplicationEnvironment, specifically ApplicationName and ApplicationBasePath, will no longer be set. Instead, the ApplicationName will be set on the IHostingEnvironment, the application base path is stored in the ContentRootPath field and the ContentRootFileProvider is the file provider for the directory set by ContentRootPath. The extension method to configure the content root is also renamed to UseContentRoot(...).

All code using IApplicationEnvironment.ApplicationBasePath should be changed to use IHostingEnvironment.ContentRootPath.

All code using IApplicationEnvironment.ApplicationName should be changed to use IHostingEnvironment.ApplicationName

MapPath should be replaced by looking at the appropriate IFileProvider calls (see below).

For example, previously it would be:

var host = new WebHostBuilder()
    .UseApplicationBasePath("/path/to/content")
    ...
    .Build();
...
var applicationEnvironment = host.Services.GetService<IApplicationEnvironment>();
var applicationName = applicationEnvironment.ApplicationName;
var applicationBasePath = applicationEnvironment.ApplicationBasePath;

Now, it should be changed to:

var host = new WebHostBuilder()
    .UseContentRoot("/path/to/content")
    ...
    .Build();
...
var hostingEnvironment = host.Services.GetService<IHostingEnvironment>();
var applicationName = hostingEnvironment.ApplicationName;
var contentRootPath = hostingEnvironment.ContentRootPath;

Old (hostingEnvironment is IHostingEnvironment). The old MapPath method only worked with files inside of the webroot. To get files on the ContentRoot (where the application code and views lived) required more steps.

var pathInsideWebRoot = hostingEnvironment.MapPath("/foo");

IHostingEnvironment now has 2 IFileProvider types exposed:

var fileInfoInsideWebRoot = hostingEnvironment.WebRootFileProvider.GetFileInfo("/foo");
var fileInfoInsideContentRoot = hostingEnvironment.ContentRootFileProvider.GetFileInfo("/foo");

var pathInsideWebRoot = fileInfoInsideWebRoot.PhysicalPath;
var pathInsideContentRoot = fileInfoInsideContentRoot.PhysicalPath;

Use aspnet/Hosting#651 for further discussions.

@JunTaoLuo JunTaoLuo added this to the 1.0.0-rc2 milestone Mar 15, 2016
@aspnet aspnet locked and limited conversation to collaborators Mar 15, 2016
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

1 participant