SEBWIN-342: Moved application instance identifier back to application namespace.

This commit is contained in:
dbuechel 2019-09-04 15:49:48 +02:00
parent f1de26cb64
commit 88afdb7d72
4 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/ */
namespace SafeExamBrowser.Core.Contracts namespace SafeExamBrowser.Applications.Contracts
{ {
/// <summary> /// <summary>
/// Defines an identifier which uniquely identifies an instance in the context of a (third-party) application. /// Defines an identifier which uniquely identifies an instance in the context of a (third-party) application.

View file

@ -60,6 +60,7 @@
<Compile Include="IApplication.cs" /> <Compile Include="IApplication.cs" />
<Compile Include="IApplicationInfo.cs" /> <Compile Include="IApplicationInfo.cs" />
<Compile Include="IApplicationInstance.cs" /> <Compile Include="IApplicationInstance.cs" />
<Compile Include="InstanceIdentifier.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View file

@ -6,7 +6,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/ */
using SafeExamBrowser.Core.Contracts; using SafeExamBrowser.Applications.Contracts;
namespace SafeExamBrowser.Browser namespace SafeExamBrowser.Browser
{ {

View file

@ -54,7 +54,6 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="IIconResource.cs" /> <Compile Include="IIconResource.cs" />
<Compile Include="InstanceIdentifier.cs" />
<Compile Include="OperationModel\Events\ActionRequiredEventArgs.cs" /> <Compile Include="OperationModel\Events\ActionRequiredEventArgs.cs" />
<Compile Include="OperationModel\Events\ActionRequiredEventHandler.cs" /> <Compile Include="OperationModel\Events\ActionRequiredEventHandler.cs" />
<Compile Include="OperationModel\Events\ProgressChangedEventArgs.cs" /> <Compile Include="OperationModel\Events\ProgressChangedEventArgs.cs" />