From 651c8c020f8bde7ff2b396079702f60541fe3f7e Mon Sep 17 00:00:00 2001 From: Kiran Challa Date: Thu, 30 Jun 2016 11:46:54 -0700 Subject: [PATCH] Document .Net CLI issue workaround on Nano (#1586) --- aspnet/tutorials/nano-server.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/aspnet/tutorials/nano-server.rst b/aspnet/tutorials/nano-server.rst index c559e7836c..7b5e5df1ac 100644 --- a/aspnet/tutorials/nano-server.rst +++ b/aspnet/tutorials/nano-server.rst @@ -141,6 +141,14 @@ Run the following commands in the remote session to create a new site in IIS for Import-module IISAdministration New-IISSite -Name "AspNetCore" -PhysicalPath c:\PublishedApps\AspNetCoreSampleForNano -BindingInformation "*:8000:" +Known issue running .NET Core CLI on Nano Server and Workaround +--------------------------------------------------------------- +If you’re using Nano Server Technical Preview 5 with .NET Core CLI, you will need to copy all DLL files from ``c:\windows\system32\forwarders`` to ``c:\windows\system32``, due to a bug that has since been fixed in later releases. + +If you use ``dotnet publish``, make sure to copy all DLL files from ``c:\windows\system32\forwarders`` to your publish directory as well. + +If your Nano Server Technical Preview 5 build is updated or serviced, please make sure to repeat this process, in case any of the DLLs have been updated as well. + Running the Application -----------------------