diff --git a/Documentation/known-issues.md b/Documentation/known-issues.md index f0f7cc7f6..5560f2e55 100644 --- a/Documentation/known-issues.md +++ b/Documentation/known-issues.md @@ -36,6 +36,23 @@ The command you can use is: ln -s /usr/local/share/dotnet/dotnet /usr/local/bin ``` +## On dev builds of the tools, restoring default project from dotnet new fails +When using non-release versions of the CLI, `dotnet restore` will fail to restore `Microsoft.NETCore.App` because for that particular version it exists on a NuGet feed that is not configured on the machine. This behavior is by design and does not happen with public releases (such as RC2). + +**Workaround:** create a `NuGet.config` file in the project directory which contains the following: + +```xml + + + + + + + + + +``` + ## `dotnet restore` times out on Win7 x64 If you have Virtual Box and you try to use the CLI on a Win7 x64 machine, `dotnet restore` will be really slow and will eventually time out without doing much restoring.