Renaming namespaces and fixing tests

This commit is contained in:
moozzyk 2016-04-19 11:26:40 -07:00
parent afe01eedbf
commit c248e539f3
14 changed files with 14 additions and 14 deletions

View File

@ -4,7 +4,7 @@
"AdxVerificationCompositeRule"
],
"packages": {
"dotnet-watch": { },
"Microsoft.DotNet.Watcher.Tools": { },
"Microsoft.DotNet.Watcher.Core": { }
}
},

View File

@ -5,7 +5,7 @@ using System;
using Microsoft.Extensions.CommandLineUtils;
using Microsoft.Extensions.Logging;
namespace Microsoft.DotNet.Watcher
namespace Microsoft.DotNet.Watcher.Tools
{
/// <summary>
/// Logger to print formatted command output.

View File

@ -5,7 +5,7 @@ using System;
using Microsoft.Extensions.PlatformAbstractions;
using Microsoft.Extensions.Logging;
namespace Microsoft.DotNet.Watcher
namespace Microsoft.DotNet.Watcher.Tools
{
public class CommandOutputProvider : ILoggerProvider
{

View File

@ -11,7 +11,7 @@ using Microsoft.Extensions.PlatformAbstractions;
using Microsoft.DotNet.Watcher.Core;
using Microsoft.Extensions.Logging;
namespace Microsoft.DotNet.Watcher
namespace Microsoft.DotNet.Watcher.Tools
{
public class Program
{

View File

@ -5,7 +5,6 @@ using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
[assembly:InternalsVisibleTo("dotnet-watch.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f33a29044fa9d740c9b3213a93e57c84b472c84e0b8a0e1ae48e67a9f8f6de9d5f7f3d52ac23e48ac51801f1dc950abe901da34d2a9e3baadb141a17c77ef3c565dd5ee5054b91cf63bb3c6ab83f72ab3aafe93d0fc3c2348b764fafb0b1c0733de51459aeab46580384bf9d74c4e28164b7cde247f891ba07891c9d872ad2bb")]
[assembly: AssemblyMetadata("Serviceable", "True")]
[assembly: NeutralResourcesLanguage("en-US")]
[assembly: AssemblyCompany("Microsoft Corporation.")]

View File

@ -1,6 +1,7 @@
{
"version": "1.0.0-*",
"compilationOptions": {
"outputName": "dotnet-watch",
"warningsAsErrors": true,
"emitEntryPoint": true,
"keyFile": "../../tools/Key.snk",

View File

@ -6,7 +6,7 @@ using System.Diagnostics;
using System.IO;
using Xunit;
namespace Microsoft.DotNet.Watcher.FunctionalTests
namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
{
public class AppWithDepsTests
{

View File

@ -9,7 +9,7 @@ using System.Threading;
using Microsoft.DotNet.Watcher.Core.Internal;
using Xunit;
namespace Microsoft.DotNet.Watcher.FunctionalTests
namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
{
public class FileWatcherTests
{

View File

@ -7,7 +7,7 @@ using System.IO;
using System.Threading;
using Xunit;
namespace Microsoft.DotNet.Watcher.FunctionalTests
namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
{
public class GlobbingAppTests
{

View File

@ -6,7 +6,7 @@ using System.Diagnostics;
using System.IO;
using Xunit;
namespace Microsoft.DotNet.Watcher.FunctionalTests
namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
{
public class NoDepsAppTests
{

View File

@ -7,11 +7,11 @@ using System.Diagnostics;
using System.IO;
using Microsoft.Extensions.Internal;
namespace Microsoft.DotNet.Watcher.FunctionalTests
namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
{
public class DotNetWatchScenario : IDisposable
{
protected const string DotnetWatch = "dotnet-watch";
protected const string DotnetWatch = "Microsoft.DotNet.Watcher.Tools";
protected static readonly string _repositoryRoot = FindRepoRoot();
protected static readonly string _artifactsFolder = Path.Combine(_repositoryRoot, "artifacts", "build");

View File

@ -10,7 +10,7 @@ using System.Threading;
using System.Xml.Linq;
using Newtonsoft.Json.Linq;
namespace Microsoft.DotNet.Watcher.FunctionalTests
namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
{
public class ProjectToolScenario: IDisposable
{

View File

@ -6,7 +6,7 @@ using System.IO;
using System.Threading;
using Microsoft.DotNet.Watcher.Core.Internal;
namespace Microsoft.DotNet.Watcher.FunctionalTests
namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
{
public class WaitForFileToChange : IDisposable
{

View File

@ -6,7 +6,7 @@ using System.Diagnostics;
using System.IO;
using System.Threading;
namespace Microsoft.DotNet.Watcher.FunctionalTests
namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
{
public static class Waiters
{