Skip to content

Commit cbc82cc

Browse files
committed
.
1 parent 55a933d commit cbc82cc

19 files changed

+71
-51
lines changed

code/KustoCopyConsole/Storage/Entity/DatabaseReference.cs code/KustoCopyConsole/Entity/DatabaseReference.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace KustoCopyConsole.Storage.Entity
7+
namespace KustoCopyConsole.Entity
88
{
99
internal class DatabaseReference
1010
{

code/KustoCopyConsole/Storage/Entity/DestinationBlockEntity.cs code/KustoCopyConsole/Entity/DestinationBlockEntity.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
using System.Linq;
55
using System.Text;
66
using System.Threading.Tasks;
7-
using KustoCopyConsole.Storage.Entity.State;
7+
using KustoCopyConsole.Entity.State;
88

9-
namespace KustoCopyConsole.Storage.Entity
9+
namespace KustoCopyConsole.Entity
1010
{
1111
internal class DestinationBlockEntity : DestinationDatabaseEntityBase
1212
{

code/KustoCopyConsole/Storage/Entity/DestinationDatabaseEntity.cs code/KustoCopyConsole/Entity/DestinationDatabaseEntity.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
using System.Linq;
44
using System.Text;
55
using System.Threading.Tasks;
6-
using KustoCopyConsole.Storage.Entity.State;
6+
using KustoCopyConsole.Entity.State;
77

8-
namespace KustoCopyConsole.Storage.Entity
8+
namespace KustoCopyConsole.Entity
99
{
1010
internal class DestinationDatabaseEntity : DestinationDatabaseEntityBase
1111
{

code/KustoCopyConsole/Storage/Entity/DestinationDatabaseEntityBase.cs code/KustoCopyConsole/Entity/DestinationDatabaseEntityBase.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
using System.Linq;
44
using System.Text;
55
using System.Threading.Tasks;
6-
using KustoCopyConsole.Storage.Entity.State;
6+
using KustoCopyConsole.Entity.State;
77

8-
namespace KustoCopyConsole.Storage.Entity
8+
namespace KustoCopyConsole.Entity
99
{
1010
internal abstract class DestinationDatabaseEntityBase : IterationEntityBase
1111
{

code/KustoCopyConsole/Storage/Entity/DestinationTableEntity.cs code/KustoCopyConsole/Entity/DestinationTableEntity.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
using System.Linq;
44
using System.Text;
55
using System.Threading.Tasks;
6-
using KustoCopyConsole.Storage.Entity.State;
6+
using KustoCopyConsole.Entity.State;
77

8-
namespace KustoCopyConsole.Storage.Entity
8+
namespace KustoCopyConsole.Entity
99
{
1010
internal class DestinationTableEntity : DestinationDatabaseEntityBase
1111
{

code/KustoCopyConsole/Storage/Entity/IterationEntityBase.cs code/KustoCopyConsole/Entity/IterationEntityBase.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace KustoCopyConsole.Storage.Entity
1+
namespace KustoCopyConsole.Entity
22
{
33
internal abstract class IterationEntityBase
44
{

code/KustoCopyConsole/Storage/Entity/SourceBlockEntity.cs code/KustoCopyConsole/Entity/SourceBlockEntity.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
using System.Linq;
55
using System.Text;
66
using System.Threading.Tasks;
7-
using KustoCopyConsole.Storage.Entity.State;
7+
using KustoCopyConsole.Entity.State;
88

9-
namespace KustoCopyConsole.Storage.Entity
9+
namespace KustoCopyConsole.Entity
1010
{
1111
internal class SourceUrlEntity : IterationEntityBase
1212
{

code/KustoCopyConsole/Storage/Entity/SourceDatabaseEntity.cs code/KustoCopyConsole/Entity/SourceDatabaseEntity.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
using System.Linq;
44
using System.Text;
55
using System.Threading.Tasks;
6-
using KustoCopyConsole.Storage.Entity.State;
6+
using KustoCopyConsole.Entity.State;
77

8-
namespace KustoCopyConsole.Storage.Entity
8+
namespace KustoCopyConsole.Entity
99
{
1010
internal class SourceDatabaseEntity : IterationEntityBase
1111
{

code/KustoCopyConsole/Storage/Entity/SourceTableEntity.cs code/KustoCopyConsole/Entity/SourceTableEntity.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
using System.Linq;
44
using System.Text;
55
using System.Threading.Tasks;
6-
using KustoCopyConsole.Storage.Entity.State;
6+
using KustoCopyConsole.Entity.State;
77

8-
namespace KustoCopyConsole.Storage.Entity
8+
namespace KustoCopyConsole.Entity
99
{
1010
internal class SourceTableEntity : IterationEntityBase
1111
{

code/KustoCopyConsole/Storage/Entity/SourceUrlEntity.cs code/KustoCopyConsole/Entity/SourceUrlEntity.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Text;
66
using System.Threading.Tasks;
77

8-
namespace KustoCopyConsole.Storage.Entity
8+
namespace KustoCopyConsole.Entity
99
{
1010
internal class SourceUrlEntity : IterationEntityBase
1111
{

code/KustoCopyConsole/Storage/Entity/State/DestinationBlockState.cs code/KustoCopyConsole/Entity/State/DestinationBlockState.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace KustoCopyConsole.Storage.Entity.State
1+
namespace KustoCopyConsole.Entity.State
22
{
33
public enum DestinationBlockState
44
{

code/KustoCopyConsole/Storage/Entity/State/DestinationDatabaseState.cs code/KustoCopyConsole/Entity/State/DestinationDatabaseState.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace KustoCopyConsole.Storage.Entity.State
1+
namespace KustoCopyConsole.Entity.State
22
{
33
public enum DestinationDatabaseState
44
{

code/KustoCopyConsole/Storage/Entity/State/DestinationTableState.cs code/KustoCopyConsole/Entity/State/DestinationTableState.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace KustoCopyConsole.Storage.Entity.State
1+
namespace KustoCopyConsole.Entity.State
22
{
33
public enum DestinationTableState
44
{

code/KustoCopyConsole/Storage/Entity/State/SourceBlockState.cs code/KustoCopyConsole/Entity/State/SourceBlockState.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace KustoCopyConsole.Storage.Entity.State
1+
namespace KustoCopyConsole.Entity.State
22
{
33
public enum SourceBlockState
44
{

code/KustoCopyConsole/Storage/Entity/State/SourceDatabaseState.cs code/KustoCopyConsole/Entity/State/SourceDatabaseState.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace KustoCopyConsole.Storage.Entity.State
1+
namespace KustoCopyConsole.Entity.State
22
{
33
public enum SourceDatabaseState
44
{

code/KustoCopyConsole/Storage/Entity/State/SourceTableState.cs code/KustoCopyConsole/Entity/State/SourceTableState.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace KustoCopyConsole.Storage.Entity.State
1+
namespace KustoCopyConsole.Entity.State
22
{
33
public enum SourceTableState
44
{

code/KustoCopyConsole/Storage/Entity/State/SourceUrlState.cs code/KustoCopyConsole/Entity/State/SourceUrlState.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace KustoCopyConsole.Storage.Entity.State
1+
namespace KustoCopyConsole.Entity.State
22
{
33
public enum SourceUrlState
44
{

code/KustoCopyConsole/Storage/Entity/VersionEntity.cs code/KustoCopyConsole/Entity/VersionEntity.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace KustoCopyConsole.Storage.Entity
7+
namespace KustoCopyConsole.Entity
88
{
99
internal class VersionEntity
1010
{

code/KustoCopyConsole/KustoCopyConsole.csproj

+46-26
Original file line numberDiff line numberDiff line change
@@ -15,38 +15,34 @@
1515
<ItemGroup>
1616
<!-- Remove Legacy files from being compiled -->
1717
<Compile Remove="Legacy\**\*.cs" />
18+
<Compile Remove="Storage\Entity\**" />
19+
<EmbeddedResource Remove="Storage\Entity\**" />
20+
<None Remove="Storage\Entity\**" />
1821
</ItemGroup>
1922

2023
<ItemGroup>
21-
<!-- Explicitly include Legacy files as None -->
22-
<None Update="Legacy\**\*.cs" />
24+
<Compile Remove="Entity\DatabaseReference.cs" />
25+
<Compile Remove="Entity\DestinationBlockEntity.cs" />
26+
<Compile Remove="Entity\DestinationDatabaseEntity.cs" />
27+
<Compile Remove="Entity\DestinationDatabaseEntityBase.cs" />
28+
<Compile Remove="Entity\DestinationTableEntity.cs" />
29+
<Compile Remove="Entity\IterationEntityBase.cs" />
30+
<Compile Remove="Entity\SourceBlockEntity.cs" />
31+
<Compile Remove="Entity\SourceDatabaseEntity.cs" />
32+
<Compile Remove="Entity\SourceTableEntity.cs" />
33+
<Compile Remove="Entity\SourceUrlEntity.cs" />
34+
<Compile Remove="Entity\State\DestinationBlockState.cs" />
35+
<Compile Remove="Entity\State\DestinationDatabaseState.cs" />
36+
<Compile Remove="Entity\State\DestinationTableState.cs" />
37+
<Compile Remove="Entity\State\SourceBlockState.cs" />
38+
<Compile Remove="Entity\State\SourceDatabaseState.cs" />
39+
<Compile Remove="Entity\State\SourceTableState.cs" />
40+
<Compile Remove="Entity\State\SourceUrlState.cs" />
2341
</ItemGroup>
2442

2543
<ItemGroup>
26-
<Compile Remove="Storage\Entity\DatabaseReference.cs" />
27-
<Compile Remove="Storage\Entity\DestinationBlockEntity.cs" />
28-
<Compile Remove="Storage\Entity\DestinationDatabaseEntity.cs" />
29-
<Compile Remove="Storage\Entity\DestinationDatabaseEntityBase.cs" />
30-
<Compile Remove="Storage\Entity\DestinationTableEntity.cs" />
31-
<Compile Remove="Storage\Entity\IterationEntityBase.cs" />
32-
<Compile Remove="Storage\Entity\SourceBlockEntity.cs" />
33-
<Compile Remove="Storage\Entity\SourceDatabaseEntity.cs" />
34-
<Compile Remove="Storage\Entity\SourceTableEntity.cs" />
35-
<Compile Remove="Storage\Entity\SourceUrlEntity.cs" />
36-
<Compile Remove="Storage\Entity\SourceUrlState.cs" />
37-
</ItemGroup>
38-
39-
<ItemGroup>
40-
<None Include="Storage\Entity\DatabaseReference.cs" />
41-
<None Include="Storage\Entity\DestinationBlockEntity.cs" />
42-
<None Include="Storage\Entity\DestinationDatabaseEntity.cs" />
43-
<None Include="Storage\Entity\DestinationDatabaseEntityBase.cs" />
44-
<None Include="Storage\Entity\DestinationTableEntity.cs" />
45-
<None Include="Storage\Entity\IterationEntityBase.cs" />
46-
<None Include="Storage\Entity\SourceBlockEntity.cs" />
47-
<None Include="Storage\Entity\SourceDatabaseEntity.cs" />
48-
<None Include="Storage\Entity\SourceTableEntity.cs" />
49-
<None Include="Storage\Entity\SourceUrlEntity.cs" />
44+
<!-- Explicitly include Legacy files as None -->
45+
<None Update="Legacy\**\*.cs" />
5046
</ItemGroup>
5147

5248
<ItemGroup>
@@ -58,4 +54,28 @@
5854
<PackageReference Include="YamlDotNet" Version="16.0.0" />
5955
</ItemGroup>
6056

57+
<ItemGroup>
58+
<Folder Include="Storage\" />
59+
</ItemGroup>
60+
61+
<ItemGroup>
62+
<None Include="Entity\DatabaseReference.cs" />
63+
<None Include="Entity\DestinationBlockEntity.cs" />
64+
<None Include="Entity\DestinationDatabaseEntity.cs" />
65+
<None Include="Entity\DestinationDatabaseEntityBase.cs" />
66+
<None Include="Entity\DestinationTableEntity.cs" />
67+
<None Include="Entity\IterationEntityBase.cs" />
68+
<None Include="Entity\SourceBlockEntity.cs" />
69+
<None Include="Entity\SourceDatabaseEntity.cs" />
70+
<None Include="Entity\SourceTableEntity.cs" />
71+
<None Include="Entity\SourceUrlEntity.cs" />
72+
<None Include="Entity\State\DestinationBlockState.cs" />
73+
<None Include="Entity\State\DestinationDatabaseState.cs" />
74+
<None Include="Entity\State\DestinationTableState.cs" />
75+
<None Include="Entity\State\SourceBlockState.cs" />
76+
<None Include="Entity\State\SourceDatabaseState.cs" />
77+
<None Include="Entity\State\SourceTableState.cs" />
78+
<None Include="Entity\State\SourceUrlState.cs" />
79+
</ItemGroup>
80+
6181
</Project>

0 commit comments

Comments
 (0)