Skip to content

Commit 143d6cd

Browse files
Remove Core from namespace
1 parent 02bca6b commit 143d6cd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+65
-65
lines changed

ShortDev.Uwp.FullTrust/ShortDev.Uwp.FullTrust.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<PropertyGroup>
13-
<Version>0.1.3</Version>
13+
<Version>0.1.5</Version>
1414
<Authors>Lukas Kurz</Authors>
1515
<Company>ShortDevelopment</Company>
1616
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>

ShortDev.Uwp.FullTrust/Core/Activation/ApplicationFrameActivator.cs renamed to ShortDev.Uwp.FullTrust/ShortDev.Uwp.FullTrust/Activation/ApplicationFrameActivator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using ShortDev.Uwp.FullTrust.Core.Interfaces;
1+
using ShortDev.Uwp.FullTrust.Interfaces;
22

3-
namespace ShortDev.Uwp.FullTrust.Core.Activation
3+
namespace ShortDev.Uwp.FullTrust.Activation
44
{
55
public static class ApplicationFrameActivator
66
{

ShortDev.Uwp.FullTrust/Core/Activation/CoreWindowActivator.cs renamed to ShortDev.Uwp.FullTrust/ShortDev.Uwp.FullTrust/Activation/CoreWindowActivator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
using ShortDev.Uwp.FullTrust.Core.Interfaces;
1+
using ShortDev.Uwp.FullTrust.Interfaces;
22
using System;
33
using System.Runtime.InteropServices;
44
using Windows.UI.Core;
55

6-
namespace ShortDev.Uwp.FullTrust.Core.Activation
6+
namespace ShortDev.Uwp.FullTrust.Activation
77
{
88
public static class CoreWindowActivator
99
{

ShortDev.Uwp.FullTrust/Core/Activation/CoreWindowFactoryActivator.cs renamed to ShortDev.Uwp.FullTrust/ShortDev.Uwp.FullTrust/Activation/CoreWindowFactoryActivator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using ShortDev.Uwp.FullTrust.Core.Interfaces;
1+
using ShortDev.Uwp.FullTrust.Interfaces;
22
using System;
33
using System.Runtime.InteropServices;
44

5-
namespace ShortDev.Uwp.FullTrust.Core.Activation
5+
namespace ShortDev.Uwp.FullTrust.Activation
66
{
77
public static class CoreWindowFactoryActivator
88
{

ShortDev.Uwp.FullTrust/Core/Activation/ImmersiveShellActivator.cs renamed to ShortDev.Uwp.FullTrust/ShortDev.Uwp.FullTrust/Activation/ImmersiveShellActivator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Runtime.InteropServices;
33

4-
namespace ShortDev.Uwp.FullTrust.Core.Activation
4+
namespace ShortDev.Uwp.FullTrust.Activation
55
{
66
public static class ImmersiveShellActivator
77
{

ShortDev.Uwp.FullTrust/Core/Activation/VirtualDesktopManagerActivator.cs renamed to ShortDev.Uwp.FullTrust/ShortDev.Uwp.FullTrust/Activation/VirtualDesktopManagerActivator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using ShortDev.Uwp.FullTrust.Core.Interfaces;
1+
using ShortDev.Uwp.FullTrust.Interfaces;
22

3-
namespace ShortDev.Uwp.FullTrust.Core.Activation
3+
namespace ShortDev.Uwp.FullTrust.Activation
44
{
55
public static class VirtualDesktopManagerActivator
66
{

ShortDev.Uwp.FullTrust/Core/Interfaces/IApplicationFrame.cs renamed to ShortDev.Uwp.FullTrust/ShortDev.Uwp.FullTrust/Interfaces/IApplicationFrame.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
using ShortDev.Uwp.FullTrust.Core.Types;
1+
using ShortDev.Uwp.FullTrust.Types;
22
using System;
33
using System.Runtime.InteropServices;
44

5-
namespace ShortDev.Uwp.FullTrust.Core.Interfaces
5+
namespace ShortDev.Uwp.FullTrust.Interfaces
66
{
77
[Guid("143715d9-a015-40ea-b695-d5cc267e36ee")] // 143715d9_a015_40ea_b695_d5cc267e36ee
88
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]

ShortDev.Uwp.FullTrust/Core/Interfaces/IApplicationFrameManager.cs renamed to ShortDev.Uwp.FullTrust/ShortDev.Uwp.FullTrust/Interfaces/IApplicationFrameManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Runtime.InteropServices;
33

4-
namespace ShortDev.Uwp.FullTrust.Core.Interfaces
4+
namespace ShortDev.Uwp.FullTrust.Interfaces
55
{
66
[Guid("d6defab3-dbb9-4413-8af9-554586fdff94")] // d6defab3_dbb9_4413_8af9_554586fdff94
77
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]

ShortDev.Uwp.FullTrust/Core/Interfaces/IApplicationFrameProxy.cs renamed to ShortDev.Uwp.FullTrust/ShortDev.Uwp.FullTrust/Interfaces/IApplicationFrameProxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Runtime.InteropServices;
33

4-
namespace ShortDev.Uwp.FullTrust.Core.Interfaces
4+
namespace ShortDev.Uwp.FullTrust.Interfaces
55
{
66
[Guid("7342f6ea-5b75-4f66-8b08-e40f686d2b41")]
77
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]

ShortDev.Uwp.FullTrust/Core/Interfaces/IApplicationFrameService.cs renamed to ShortDev.Uwp.FullTrust/ShortDev.Uwp.FullTrust/Interfaces/IApplicationFrameService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Runtime.InteropServices;
33

4-
namespace ShortDev.Uwp.FullTrust.Core.Interfaces
4+
namespace ShortDev.Uwp.FullTrust.Interfaces
55
{
66
[Guid("88b25c81-171b-48b0-91d6-c75846bcf035")] // 94ea2b94-e9cc-49e0-c0ff-ee64ca8f5b90 : 88b25c81-171b-48b0-91d6-c75846bcf035
77
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]

0 commit comments

Comments
 (0)