Skip to content

Commit

Permalink
cleaned up the whole project
Browse files Browse the repository at this point in the history
  • Loading branch information
dei79 committed Sep 4, 2022
1 parent 691d6f0 commit 4e1d593
Show file tree
Hide file tree
Showing 21 changed files with 451 additions and 503 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,14 @@
<None Remove="Xunit.DependencyInjection" />
<None Remove="TestEnvironments\" />
<None Remove="Extensions\" />
<None Remove="Delegates\" />
</ItemGroup>
<ItemGroup>
<Folder Include="Models\" />
<Folder Include="Contracts\" />
<Folder Include="TestEnvironments\" />
<Folder Include="Extensions\" />
<Folder Include="Delegates\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CoreHelpers.WindowsAzure.Storage.Table\CoreHelpers.WindowsAzure.Storage.Table.csproj" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;

namespace CoreHelpers.WindowsAzure.Storage.Table.Delegates
namespace CoreHelpers.WindowsAzure.Storage.Table.Tests.Delegates
{
public class StorageContextStatsDelegate : IStorageContextDelegate
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using CoreHelpers.WindowsAzure.Storage.Table.Delegates;
using CoreHelpers.WindowsAzure.Storage.Table.Tests.Contracts;
using CoreHelpers.WindowsAzure.Storage.Table.Tests.Delegates;
using CoreHelpers.WindowsAzure.Storage.Table.Tests.Extensions;
using CoreHelpers.WindowsAzure.Storage.Table.Tests.Models;
using Xunit.DependencyInjection;
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
namespace CoreHelpers.WindowsAzure.Storage.Table.Attributes
{
[AttributeUsage(AttributeTargets.Property)]
public class StoreAsJsonObjectAttribute : StoreAsAttribute, IVirtualTypeAttribute
public class StoreAsJsonObjectAttribute : Attribute, IVirtualTypeAttribute
{
protected Type ObjectType { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
namespace CoreHelpers.WindowsAzure.Storage.Table.Attributes
{
[AttributeUsage(AttributeTargets.Property)]
public class VirtualListAttribute : VirtualTypeAttribute, IVirtualTypeAttribute
public class VirtualListAttribute : Attribute, IVirtualTypeAttribute
{
private HandlebarsTemplate<object, string> TemplateFunction { get; set; }
private string DigitFormat { get; set; }
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
<ItemGroup>
<Folder Include="Attributes\" />
<Folder Include="Extensions\" />
<Folder Include="Delegates\" />
<Folder Include="Internal\" />
<Folder Include="Serialization\" />
</ItemGroup>
Expand Down
10 changes: 0 additions & 10 deletions CoreHelpers.WindowsAzure.Storage.Table/IStorageLogger.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;

namespace CoreHelpers.WindowsAzure.Storage.Table.Models
namespace CoreHelpers.WindowsAzure.Storage.Table.Internal
{
internal class ImportExportTableEntity
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Text;

namespace CoreHelpers.WindowsAzure.Storage.Table.Models
namespace CoreHelpers.WindowsAzure.Storage.Table.Internal
{
internal class ImportExportTablePropertyEntity
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// </copyright>
// -----------------------------------------------------------------------------------------

namespace CoreHelpers.WindowsAzure.Storage.Table
namespace CoreHelpers.WindowsAzure.Storage.Table.Internal
{
using System;

Expand Down
69 changes: 0 additions & 69 deletions CoreHelpers.WindowsAzure.Storage.Table/PagedTableEntityWriter.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
using Azure.Data.Tables;
using CoreHelpers.WindowsAzure.Storage.Table.Attributes;
using CoreHelpers.WindowsAzure.Storage.Table.Extensions;
using CoreHelpers.WindowsAzure.Storage.Table.Internal;
using HandlebarsDotNet;

namespace CoreHelpers.WindowsAzure.Storage.Table.Serialization
{
public static class TableEntityDynamic
internal static class TableEntityDynamic
{
public static TableEntity ToEntity<T>(T model, StorageEntityMapper entityMapper) where T: new()
{
Expand Down
Loading

0 comments on commit 4e1d593

Please sign in to comment.