Skip to content

Commit

Permalink
Simpler shorter names (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBoike authored Aug 9, 2021
1 parent ce494ec commit 20e77bd
Show file tree
Hide file tree
Showing 28 changed files with 35 additions and 35 deletions.
6 changes: 3 additions & 3 deletions src/Particular.AzureTable.Export.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30114.105
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AzureStorageSagaExporter", "AzureStorageSagaExporter\AzureStorageSagaExporter.csproj", "{5ACAB211-F966-48DC-B436-FED2A4EBEC38}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Particular.AzureTable.Export", "Particular.AzureTable.Export\Particular.AzureTable.Export.csproj", "{5ACAB211-F966-48DC-B436-FED2A4EBEC38}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AzureStorageSagaExporter.AzureStorage2.AcceptanceTests", "AzureStorageSagaExporter.AzureStorage2.AcceptanceTests\AzureStorageSagaExporter.AzureStorage2.AcceptanceTests.csproj", "{1BB66E2F-0BCF-4A0C-B2B0-556874A1A5AA}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests.AzureStorage2", "Tests.AzureStorage2\Tests.AzureStorage2.csproj", "{1BB66E2F-0BCF-4A0C-B2B0-556874A1A5AA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AzureStorageSagaExporter.AzureTable3.AcceptanceTests", "AzureStorageSagaExporter.AzureTable3.AcceptanceTests\AzureStorageSagaExporter.AzureTable3.AcceptanceTests.csproj", "{4D88A75D-6017-43EC-ADF2-E194B9F37BE3}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests.AzureTable3", "Tests.AzureTable3\Tests.AzureTable3.csproj", "{4D88A75D-6017-43EC-ADF2-E194B9F37BE3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter
namespace Particular.AzureTable.Export
{
class ApplicationOptions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter
namespace Particular.AzureTable.Export
{
using System.Collections.Generic;
using System.Runtime.CompilerServices;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter
namespace Particular.AzureTable.Export
{
using System;
using Microsoft.Extensions.Logging;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter
namespace Particular.AzureTable.Export
{
using System;
using System.Security.Cryptography;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter
namespace Particular.AzureTable.Export
{
using System;
using System.Collections;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter
namespace Particular.AzureTable.Export
{
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter
namespace Particular.AzureTable.Export
{
static partial class MetadataExtensions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter
namespace Particular.AzureTable.Export
{
static partial class MetadataExtensions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<Description>Tool to export NServiceBus persistence data from Azure Table for import into Cosmos DB</Description>
<ToolCommandName>particular-azuretable-export</ToolCommandName>
<PackAsTool>True</PackAsTool>
<RootNamespace>AzureStorageSagaExporter</RootNamespace>
<RootNamespace>Particular.AzureTable.Export</RootNamespace>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter
namespace Particular.AzureTable.Export
{
using System.IO;
using System.Threading.Tasks;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter
namespace Particular.AzureTable.Export
{
static class SagaSchemaVersion
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter
namespace Particular.AzureTable.Export
{
using System;
using System.Linq;
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
namespace AzureStorageSagaExporter.AzureTable3.AcceptanceTests
namespace Tests.AzureStorage2
{
using NServiceBus;
using NServiceBus.AcceptanceTesting.Support;
using System;
using System.Threading.Tasks;
using NServiceBus;
using NServiceBus.AcceptanceTesting.Support;

public class BaseEndpoint : IEndpointSetupTemplate
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter.AzureTable3.AcceptanceTests
namespace Tests.AzureStorage2
{
using NServiceBus;
using NServiceBus.AcceptanceTesting.Support;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter.AzureStorage2.AcceptanceTests
namespace Tests.AzureStorage2
{
using System;
using System.Collections.Generic;
Expand All @@ -7,14 +7,14 @@
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using AzureStorageSagaExporter;
using Microsoft.Azure.Cosmos;
using Microsoft.Azure.Cosmos.Table;
using NServiceBus;
using NServiceBus.AcceptanceTesting;
using NServiceBus.AcceptanceTesting.Customization;
using NUnit.Framework;
using Particular.Approvals;
using Particular.AzureTable.Export;

class MigrationEndToEnd : NServiceBusAcceptanceTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter.AzureTable3.AcceptanceTests
namespace Tests.AzureStorage2
{
using System;
using System.IO;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<IsPackable>false</IsPackable>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\Test.snk</AssemblyOriginatorKeyFile>
<RootNamespace>AzureStorageSagaExporter.AcceptanceTests</RootNamespace>
<RootNamespace>Tests.AzureStorage2</RootNamespace>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\AzureStorageSagaExporter\CosmosSagaIdGenerator.cs" Link="CosmosSagaIdGenerator.cs" />
<Compile Include="..\Particular.AzureTable.Export\CosmosSagaIdGenerator.cs" Link="CosmosSagaIdGenerator.cs" />
</ItemGroup>

<ItemGroup>
Expand All @@ -25,7 +25,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\AzureStorageSagaExporter\AzureStorageSagaExporter.csproj" />
<ProjectReference Include="..\Particular.AzureTable.Export\Particular.AzureTable.Export.csproj" />
</ItemGroup>

</Project>
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
namespace AzureStorageSagaExporter.AzureStorage2.AcceptanceTests
namespace Tests.AzureTable3
{
using NServiceBus;
using NServiceBus.AcceptanceTesting.Support;
using System;
using System.Threading.Tasks;
using NServiceBus;
using NServiceBus.AcceptanceTesting.Support;

public class BaseEndpoint : IEndpointSetupTemplate
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter.AzureStorage2.AcceptanceTests
namespace Tests.AzureTable3
{
using NServiceBus;
using NServiceBus.AcceptanceTesting.Support;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter.AzureTable3.AcceptanceTests
namespace Tests.AzureTable3
{
using System;
using System.Collections.Generic;
Expand All @@ -7,14 +7,14 @@
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using AzureStorageSagaExporter;
using Microsoft.Azure.Cosmos;
using Microsoft.Azure.Cosmos.Table;
using NServiceBus;
using NServiceBus.AcceptanceTesting;
using NServiceBus.AcceptanceTesting.Customization;
using NUnit.Framework;
using Particular.Approvals;
using Particular.AzureTable.Export;

class MigrationEndToEnd : NServiceBusAcceptanceTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace AzureStorageSagaExporter.AzureStorage2.AcceptanceTests
namespace Tests.AzureTable3
{
using System;
using System.IO;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<IsPackable>false</IsPackable>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\Test.snk</AssemblyOriginatorKeyFile>
<RootNamespace>AzureStorageSagaExporter.AzureTable3.AcceptanceTests</RootNamespace>
<RootNamespace>Tests.AzureTable3</RootNamespace>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\AzureStorageSagaExporter\CosmosSagaIdGenerator.cs" Link="CosmosSagaIdGenerator.cs" />
<Compile Include="..\Particular.AzureTable.Export\CosmosSagaIdGenerator.cs" Link="CosmosSagaIdGenerator.cs" />
</ItemGroup>

<ItemGroup>
Expand All @@ -25,7 +25,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\AzureStorageSagaExporter\AzureStorageSagaExporter.csproj" />
<ProjectReference Include="..\Particular.AzureTable.Export\Particular.AzureTable.Export.csproj" />
</ItemGroup>

</Project>

0 comments on commit 20e77bd

Please sign in to comment.