Add nuget feed to restore CLI dependencies

This commit is contained in:
Nate McMaster 2016-11-04 10:47:13 -07:00
parent 5de082e687
commit 944e99121c
2 changed files with 5 additions and 3 deletions

View File

@ -2,7 +2,9 @@
<configuration> <configuration>
<packageSources> <packageSources>
<clear /> <clear />
<add key="dotnet-cli" value="https://dotnet.myget.org/F/dotnet-cli/api/v3/index.json" />
<add key="cli-deps" value="https://dotnet.myget.org/F/cli-deps/api/v3/index.json" />
<add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-master/api/v3/index.json" /> <add key="AspNetCore" value="https://dotnet.myget.org/F/aspnetcore-master/api/v3/index.json" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" /> <add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources> </packageSources>
</configuration> </configuration>

View File

@ -97,10 +97,10 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
args.Add("exec"); args.Add("exec");
args.Add("--depsfile"); args.Add("--depsfile");
args.Add(Path.Combine(AppContext.BaseDirectory, thisAssembly + ".deps.json")); args.Add(Path.Combine(AppContext.BaseDirectory, thisAssembly + FileNameSuffixes.DepsJson));
args.Add("--runtimeconfig"); args.Add("--runtimeconfig");
args.Add(Path.Combine(AppContext.BaseDirectory, thisAssembly + ".runtimeconfig.json")); args.Add(Path.Combine(AppContext.BaseDirectory, thisAssembly + FileNameSuffixes.RuntimeConfigJson));
args.Add(Path.Combine(AppContext.BaseDirectory, "dotnet-watch.dll")); args.Add(Path.Combine(AppContext.BaseDirectory, "dotnet-watch.dll"));