Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/VisualStudio.Tests/ChooserTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using Xunit;
using Xunit.Abstractions;

namespace VisualStudio.Tests
namespace Devlooped.Tests
{
public class ChooserTests
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio.Tests/CommandFactoryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Threading.Tasks;
using Xunit;

namespace VisualStudio.Tests
namespace Devlooped.Tests
{
public class CommandFactoryTests
{
Expand Down
4 changes: 2 additions & 2 deletions src/VisualStudio.Tests/Commands/ClientCommandTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Xunit.Abstractions;
using DevEnv = vswhere.VisualStudioInstance;

namespace VisualStudio.Tests
namespace Devlooped.Tests
{
public class ClientCommandTests
{
Expand Down Expand Up @@ -112,7 +112,7 @@ protected override IEnumerable<string> ReadOutputLines(Process process)
{
yield return "Start Live Share Session command enabled: True";
yield return "Start Live Share Session command succeeded: True";
yield return $"Invitation link:https://prod.liveshare.vsengsaas.visualstudio.com/join?{GeneratedServerWorkspaceId}";
yield return $"Invitation link:https://prod.liveshare.vsengsaas.VisualStudio.com/join?{GeneratedServerWorkspaceId}";
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/VisualStudio.Tests/Commands/GenerateReadmeCommandTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Xunit;
using Xunit.Abstractions;

namespace VisualStudio.Tests
namespace Devlooped.Tests
{
public class GenerateReadmeCommandTests
{
Expand Down Expand Up @@ -73,7 +73,7 @@ public TestCommandDescriptor()
{
Description = "test command description";

Options = VisualStudio.Options.Empty.With(
Options = Devlooped.Options.Empty.With(
new OptionSet
{
{ "headers should not be included in the markdown" },
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio.Tests/OutputHelperTextWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Text;
using Xunit.Abstractions;

namespace VisualStudio.Tests
namespace Devlooped.Tests
{
internal class OutputHelperTextWriter : TextWriter
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio.Tests/ProgramTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Xunit;
using Xunit.Abstractions;

namespace VisualStudio.Tests
namespace Devlooped.Tests
{
public class ProgramTests
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio.Tests/VisualStudioInstanceExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using System.Collections.Generic;
using VisualStudio;
using Devlooped;

namespace vswhere
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio.Tests/VisualStudioOptionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using Xunit;

namespace VisualStudio.Tests
namespace Devlooped.Tests
{
public class VisualStudioOptionsTests
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using vswhere;
using Xunit;

namespace VisualStudio.Tests
namespace Devlooped.Tests
{
public class VisualStudioPredicateBuilderTests
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Channel.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VisualStudio
namespace Devlooped
{
public enum Channel
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Chooser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Linq;
using vswhere;

namespace VisualStudio
namespace Devlooped
{
class Chooser
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Command.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.IO;
using System.Threading.Tasks;

namespace VisualStudio
namespace Devlooped
{
abstract class Command
{
Expand Down
4 changes: 2 additions & 2 deletions src/VisualStudio/CommandDescriptor.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System.Collections.Generic;
using System.Collections.Immutable;

namespace VisualStudio
namespace Devlooped
{
abstract class CommandDescriptor
{
public IOptions Options { get; protected set; } = VisualStudio.Options.Empty;
public IOptions Options { get; protected set; } = Devlooped.Options.Empty;

public string Description { get; protected set; } = string.Empty;

Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/CommandFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading.Tasks;
using DotNetConfig;

namespace VisualStudio
namespace Devlooped
{
sealed class CommandFactory
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using DotNetConfig;

namespace VisualStudio
namespace Devlooped
{
class Commands
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/AliasCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Linq;
using System.Threading.Tasks;

namespace VisualStudio
namespace Devlooped
{
class AliasCommand : Command<AliasCommandDescriptor>
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/AliasCommandDescriptor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VisualStudio
namespace Devlooped
{
class AliasCommandDescriptor : CommandDescriptor
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/ClientCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Threading.Tasks;
using DevEnv = vswhere.VisualStudioInstance;

namespace VisualStudio
namespace Devlooped
{
class ClientCommand : Command<ClientCommandDescriptor>, IDisposable
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/ClientCommandDescriptor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VisualStudio
namespace Devlooped
{
class ClientCommandDescriptor : CommandDescriptor
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/ConfigCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.IO;
using System.Threading.Tasks;

namespace VisualStudio
namespace Devlooped
{
class ConfigCommand : Command<ConfigCommandDescriptor>
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/ConfigCommandDescriptor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VisualStudio
namespace Devlooped
{
class ConfigCommandDescriptor : CommandDescriptor
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/GenerateReadmeCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Text;
using System.Threading.Tasks;

namespace VisualStudio
namespace Devlooped
{
class GenerateReadmeCommand : Command<GenerateReadmeCommandDescriptor>
{
Expand Down
4 changes: 2 additions & 2 deletions src/VisualStudio/Commands/GenerateReadmeCommandDescriptor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
using System.Threading.Tasks;
using Mono.Options;

namespace VisualStudio
namespace Devlooped
{
class GenerateReadmeCommandDescriptor : CommandDescriptor
{
const string ResourcePrefix = "VisualStudio.Docs.";
const string ReadmeResource = ResourcePrefix + "README.md";
const string ReadmeResource = ResourcePrefix + "readme.md";

public GenerateReadmeCommandDescriptor(Dictionary<string, CommandDescriptor> commands)
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/InstallCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Linq;
using System.Threading.Tasks;

namespace VisualStudio
namespace Devlooped
{
class InstallCommand : Command<InstallCommandDescriptor>
{
Expand Down
4 changes: 2 additions & 2 deletions src/VisualStudio/Commands/InstallCommandDescriptor.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace VisualStudio
namespace Devlooped
{
class InstallCommandDescriptor : CommandDescriptor
{
Expand All @@ -15,7 +15,7 @@ public InstallCommandDescriptor()

public Channel? Channel => vsOptions.Channel;

public Sku? Sku => vsOptions.Sku ?? VisualStudio.Sku.Community;
public Sku? Sku => vsOptions.Sku ?? Devlooped.Sku.Community;

public string Nickname => vsOptions.Nickname;

Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/KillCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading.Tasks;
using vswhere;

namespace VisualStudio
namespace Devlooped
{
class KillCommand : Command<KillCommandDescriptor>
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/KillCommandDescriptor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VisualStudio
namespace Devlooped
{
class KillCommandDescriptor : CommandDescriptor
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/LogCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.IO;
using System.Threading.Tasks;

namespace VisualStudio
namespace Devlooped
{
class LogCommand : Command<LogCommandDescriptor>
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/LogCommandDescriptor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VisualStudio
namespace Devlooped
{
class LogCommandDescriptor : CommandDescriptor
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/ModifyCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Threading.Tasks;
using vswhere;

namespace VisualStudio
namespace Devlooped
{
class ModifyCommand : Command<ModifyCommandDescriptor>
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/ModifyCommandDescriptor.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Immutable;

namespace VisualStudio
namespace Devlooped
{
class ModifyCommandDescriptor : CommandDescriptor
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/RunCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Threading.Tasks;
using vswhere;

namespace VisualStudio
namespace Devlooped
{
class RunCommand : Command<RunCommandDescriptor>
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/RunCommandDescriptor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Linq;
using Mono.Options;

namespace VisualStudio
namespace Devlooped
{
class RunCommandDescriptor : CommandDescriptor
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/SaveCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Threading.Tasks;
using DotNetConfig;

namespace VisualStudio
namespace Devlooped
{
class SaveCommand : Command<SaveCommandDescriptor>
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/SaveCommandDescriptor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VisualStudio
namespace Devlooped
{
class SaveCommandDescriptor : CommandDescriptor
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/UpdateCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Threading.Tasks;
using vswhere;

namespace VisualStudio
namespace Devlooped
{
class UpdateCommand : Command<UpdateCommandDescriptor>
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/UpdateCommandDescriptor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VisualStudio
namespace Devlooped
{
class UpdateCommandDescriptor : CommandDescriptor
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/UpdateSelfCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.IO;
using System.Threading.Tasks;

namespace VisualStudio
namespace Devlooped
{
class UpdateSelfCommand : Command<UpdateSelfCommandDescriptor>
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/UpdateSelfCommandDescriptor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VisualStudio
namespace Devlooped
{
class UpdateSelfCommandDescriptor : CommandDescriptor
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/WhereCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading.Tasks;
using vswhere;

namespace VisualStudio
namespace Devlooped
{
class WhereCommand : Command<WhereCommandDescriptor>
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Commands/WhereCommandDescriptor.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace VisualStudio
namespace Devlooped
{
class WhereCommandDescriptor : CommandDescriptor
{
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/DefaultTextWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.IO;
using Mono.Options;

namespace VisualStudio
namespace Devlooped
{
class DefaultTextWriter : ITextWriter
{
Expand Down
5 changes: 5 additions & 0 deletions src/VisualStudio/Docs/modify.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,10 @@

Examples:

<!-- EXAMPLES_BEGIN -->
```
# Add .NET Core Workload to installed Visual Studio Preview
> vs modify preview +core
```
<!-- EXAMPLES_END -->

File renamed without changes.
Loading