SEBWIN-219: Forgot to change namespace of operation model in core library.
This commit is contained in:
parent
f0ec9a4821
commit
e3b8bb8cc8
11 changed files with 15 additions and 15 deletions
|
@ -23,7 +23,7 @@ using SafeExamBrowser.Contracts.I18n;
|
|||
using SafeExamBrowser.Contracts.Logging;
|
||||
using SafeExamBrowser.Contracts.UserInterface;
|
||||
using SafeExamBrowser.Contracts.WindowsApi;
|
||||
using SafeExamBrowser.Core.Behaviour.Operations;
|
||||
using SafeExamBrowser.Core.Behaviour.OperationModel;
|
||||
using SafeExamBrowser.Core.Communication;
|
||||
using SafeExamBrowser.Core.I18n;
|
||||
using SafeExamBrowser.Core.Logging;
|
||||
|
|
|
@ -10,7 +10,7 @@ using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|||
using Moq;
|
||||
using SafeExamBrowser.Contracts.Communication;
|
||||
using SafeExamBrowser.Contracts.Logging;
|
||||
using SafeExamBrowser.Core.Behaviour.Operations;
|
||||
using SafeExamBrowser.Core.Behaviour.OperationModel;
|
||||
|
||||
namespace SafeExamBrowser.Core.UnitTests.Behaviour.Operations
|
||||
{
|
||||
|
|
|
@ -10,7 +10,7 @@ using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|||
using Moq;
|
||||
using SafeExamBrowser.Contracts.I18n;
|
||||
using SafeExamBrowser.Contracts.Logging;
|
||||
using SafeExamBrowser.Core.Behaviour.Operations;
|
||||
using SafeExamBrowser.Core.Behaviour.OperationModel;
|
||||
|
||||
namespace SafeExamBrowser.Core.UnitTests.Behaviour.Operations
|
||||
{
|
||||
|
|
|
@ -13,7 +13,7 @@ using Moq;
|
|||
using SafeExamBrowser.Contracts.Behaviour.OperationModel;
|
||||
using SafeExamBrowser.Contracts.Logging;
|
||||
using SafeExamBrowser.Contracts.UserInterface;
|
||||
using SafeExamBrowser.Core.Behaviour.Operations;
|
||||
using SafeExamBrowser.Core.Behaviour.OperationModel;
|
||||
|
||||
namespace SafeExamBrowser.Core.UnitTests.Behaviour.Operations
|
||||
{
|
||||
|
|
|
@ -12,7 +12,7 @@ using SafeExamBrowser.Contracts.I18n;
|
|||
using SafeExamBrowser.Contracts.Logging;
|
||||
using SafeExamBrowser.Contracts.UserInterface;
|
||||
|
||||
namespace SafeExamBrowser.Core.Behaviour.Operations
|
||||
namespace SafeExamBrowser.Core.Behaviour.OperationModel
|
||||
{
|
||||
/// <summary>
|
||||
/// An operation to handle the lifetime of an <see cref="ICommunicationHost"/>. The host is started during <see cref="Perform"/>,
|
|
@ -10,7 +10,7 @@ using System;
|
|||
using SafeExamBrowser.Contracts.Behaviour.OperationModel;
|
||||
using SafeExamBrowser.Contracts.UserInterface;
|
||||
|
||||
namespace SafeExamBrowser.Core.Behaviour.Operations
|
||||
namespace SafeExamBrowser.Core.Behaviour.OperationModel
|
||||
{
|
||||
/// <summary>
|
||||
/// A wrapper operation to allow for a delayed (just-in-time) instantiation of an operation. Is useful when e.g. dependencies for a
|
|
@ -10,7 +10,7 @@ using System;
|
|||
using SafeExamBrowser.Contracts.Behaviour.OperationModel;
|
||||
using SafeExamBrowser.Contracts.UserInterface;
|
||||
|
||||
namespace SafeExamBrowser.Core.Behaviour.Operations
|
||||
namespace SafeExamBrowser.Core.Behaviour.OperationModel
|
||||
{
|
||||
/// <summary>
|
||||
/// A generic operation to allow for the (inline) definition of an operation via delegates. Useful if implementing a complete
|
|
@ -15,7 +15,7 @@ using SafeExamBrowser.Contracts.Logging;
|
|||
using SafeExamBrowser.Contracts.UserInterface;
|
||||
using SafeExamBrowser.Core.I18n;
|
||||
|
||||
namespace SafeExamBrowser.Core.Behaviour.Operations
|
||||
namespace SafeExamBrowser.Core.Behaviour.OperationModel
|
||||
{
|
||||
/// <summary>
|
||||
/// An operation to handle the initialization of an <see cref="IText"/> module with text data from the default directory.
|
|
@ -13,7 +13,7 @@ using SafeExamBrowser.Contracts.Behaviour.OperationModel;
|
|||
using SafeExamBrowser.Contracts.Logging;
|
||||
using SafeExamBrowser.Contracts.UserInterface;
|
||||
|
||||
namespace SafeExamBrowser.Core.Behaviour.Operations
|
||||
namespace SafeExamBrowser.Core.Behaviour.OperationModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Default implementation of the <see cref="IOperationSequence"/>.
|
|
@ -55,11 +55,11 @@
|
|||
<Reference Include="System.Xml.Linq" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Behaviour\Operations\CommunicationOperation.cs" />
|
||||
<Compile Include="Behaviour\Operations\DelayedInitializationOperation.cs" />
|
||||
<Compile Include="Behaviour\Operations\I18nOperation.cs" />
|
||||
<Compile Include="Behaviour\Operations\DelegateOperation.cs" />
|
||||
<Compile Include="Behaviour\Operations\OperationSequence.cs" />
|
||||
<Compile Include="Behaviour\OperationModel\CommunicationOperation.cs" />
|
||||
<Compile Include="Behaviour\OperationModel\DelayedInitializationOperation.cs" />
|
||||
<Compile Include="Behaviour\OperationModel\I18nOperation.cs" />
|
||||
<Compile Include="Behaviour\OperationModel\DelegateOperation.cs" />
|
||||
<Compile Include="Behaviour\OperationModel\OperationSequence.cs" />
|
||||
<Compile Include="Communication\BaseProxy.cs" />
|
||||
<Compile Include="Communication\BaseHost.cs" />
|
||||
<Compile Include="Communication\ClientProxy.cs" />
|
||||
|
|
|
@ -13,7 +13,7 @@ using SafeExamBrowser.Contracts.Behaviour;
|
|||
using SafeExamBrowser.Contracts.Behaviour.OperationModel;
|
||||
using SafeExamBrowser.Contracts.Configuration;
|
||||
using SafeExamBrowser.Contracts.Logging;
|
||||
using SafeExamBrowser.Core.Behaviour.Operations;
|
||||
using SafeExamBrowser.Core.Behaviour.OperationModel;
|
||||
using SafeExamBrowser.Core.Communication;
|
||||
using SafeExamBrowser.Core.I18n;
|
||||
using SafeExamBrowser.Core.Logging;
|
||||
|
|
Loading…
Reference in a new issue