fix abstraction project name (big oopsie!), rename master branch to main

This commit is contained in:
Mathias Beaulieu-Duncan 2024-11-11 11:37:02 -05:00
parent 1644a03a09
commit 2d401dd67c
Signed by: mathias
GPG Key ID: 1C16CF05BAF9162D
22 changed files with 21 additions and 21 deletions

View File

@ -1,3 +1,3 @@
namespace OpenHarbor.Abstractions; namespace OpenHarbor.Storage.Abstractions;
public class FileAlreadyExistsException(string path) : Exception($"{path} already exists.."); public class FileAlreadyExistsException(string path) : Exception($"{path} already exists..");

View File

@ -1,3 +1,3 @@
namespace OpenHarbor.Abstractions; namespace OpenHarbor.Storage.Abstractions;
public class FileDoesNotExistException(string path) : Exception($"{path} does not exist."); public class FileDoesNotExistException(string path) : Exception($"{path} does not exist.");

View File

@ -1,4 +1,4 @@
namespace OpenHarbor.Abstractions; namespace OpenHarbor.Storage.Abstractions;
public interface IDirectoryInfo: IDirectoryOrFile public interface IDirectoryInfo: IDirectoryOrFile
{ {

View File

@ -1,4 +1,4 @@
namespace OpenHarbor.Abstractions; namespace OpenHarbor.Storage.Abstractions;
public interface IDirectoryOrFile public interface IDirectoryOrFile
{ {

View File

@ -1,4 +1,4 @@
namespace OpenHarbor.Abstractions; namespace OpenHarbor.Storage.Abstractions;
public interface IFileInfo : IDirectoryOrFile public interface IFileInfo : IDirectoryOrFile
{ {

View File

@ -1,6 +1,6 @@
using System.Text; using System.Text;
namespace OpenHarbor.Abstractions; namespace OpenHarbor.Storage.Abstractions;
public interface IStorageProvider public interface IStorageProvider
{ {

View File

@ -1,4 +1,4 @@
namespace OpenHarbor.Abstractions; namespace OpenHarbor.Storage.Abstractions;
public interface IWriteFileOptions public interface IWriteFileOptions
{ {

View File

@ -1,5 +1,5 @@
using Microsoft.WindowsAzure.Storage.Blob; using Microsoft.WindowsAzure.Storage.Blob;
using OpenHarbor.Abstractions; using OpenHarbor.Storage.Abstractions;
namespace OpenHarbor.Storage.Azure.Blob; namespace OpenHarbor.Storage.Azure.Blob;

View File

@ -1,5 +1,5 @@
using Microsoft.WindowsAzure.Storage.Blob; using Microsoft.WindowsAzure.Storage.Blob;
using OpenHarbor.Abstractions; using OpenHarbor.Storage.Abstractions;
namespace OpenHarbor.Storage.Azure.Blob; namespace OpenHarbor.Storage.Azure.Blob;

View File

@ -1,7 +1,7 @@
using System.Text; using System.Text;
using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Blob; using Microsoft.WindowsAzure.Storage.Blob;
using OpenHarbor.Abstractions; using OpenHarbor.Storage.Abstractions;
namespace OpenHarbor.Storage.Azure.Blob; namespace OpenHarbor.Storage.Azure.Blob;

View File

@ -12,6 +12,6 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\OpenHarbor.Abstractions\OpenHarbor.Abstractions.csproj" /> <ProjectReference Include="..\OpenHarbor.Storage.Abstractions\OpenHarbor.Storage.Abstractions.csproj" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -8,6 +8,6 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\OpenHarbor.Abstractions\OpenHarbor.Abstractions.csproj" /> <ProjectReference Include="..\OpenHarbor.Storage.Abstractions\OpenHarbor.Storage.Abstractions.csproj" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -1,4 +1,4 @@
using OpenHarbor.Abstractions; using OpenHarbor.Storage.Abstractions;
namespace OpenHarbor.Storage.Physical; namespace OpenHarbor.Storage.Physical;

View File

@ -1,4 +1,4 @@
using OpenHarbor.Abstractions; using OpenHarbor.Storage.Abstractions;
using System; using System;
using System.IO; using System.IO;

View File

@ -1,5 +1,5 @@
using System.Text; using System.Text;
using OpenHarbor.Abstractions; using OpenHarbor.Storage.Abstractions;
namespace OpenHarbor.Storage.Physical; namespace OpenHarbor.Storage.Physical;

View File

@ -1,4 +1,4 @@
using OpenHarbor.Abstractions; using OpenHarbor.Storage.Abstractions;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;

View File

@ -8,7 +8,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\OpenHarbor.Abstractions\OpenHarbor.Abstractions.csproj" /> <ProjectReference Include="..\OpenHarbor.Storage.Abstractions\OpenHarbor.Storage.Abstractions.csproj" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View File

@ -1,6 +1,6 @@
using System; using System;
using Amazon.S3.Model; using Amazon.S3.Model;
using OpenHarbor.Abstractions; using OpenHarbor.Storage.Abstractions;
namespace OpenHarbor.Storage.S3 namespace OpenHarbor.Storage.S3
{ {

View File

@ -1,4 +1,4 @@
using OpenHarbor.Abstractions; using OpenHarbor.Storage.Abstractions;
namespace OpenHarbor.Storage.S3 namespace OpenHarbor.Storage.S3
{ {

View File

@ -3,7 +3,7 @@ using System.Text.RegularExpressions;
using Amazon.Runtime; using Amazon.Runtime;
using Amazon.S3; using Amazon.S3;
using Amazon.S3.Model; using Amazon.S3.Model;
using OpenHarbor.Abstractions; using OpenHarbor.Storage.Abstractions;
namespace OpenHarbor.Storage.S3; namespace OpenHarbor.Storage.S3;

View File

@ -5,7 +5,7 @@ VisualStudioVersion = 16.0.30406.217
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenHarbor.Storage.Azure", "OpenHarbor.Storage.Azure\OpenHarbor.Storage.Azure.csproj", "{B937F389-07BE-4235-B2A8-7D1229B3D0FC}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenHarbor.Storage.Azure", "OpenHarbor.Storage.Azure\OpenHarbor.Storage.Azure.csproj", "{B937F389-07BE-4235-B2A8-7D1229B3D0FC}"
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenHarbor.Abstractions", "OpenHarbor.Abstractions\OpenHarbor.Abstractions.csproj", "{C9CBCC98-B38E-4949-AF7C-BD291E09A1F4}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenHarbor.Storage.Abstractions", "OpenHarbor.Storage.Abstractions\OpenHarbor.Storage.Abstractions.csproj", "{C9CBCC98-B38E-4949-AF7C-BD291E09A1F4}"
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenHarbor.Storage.Physical", "OpenHarbor.Storage.Physical\OpenHarbor.Storage.Physical.csproj", "{349E6B89-BEBB-4883-95C8-9E28F9FEF24C}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenHarbor.Storage.Physical", "OpenHarbor.Storage.Physical\OpenHarbor.Storage.Physical.csproj", "{349E6B89-BEBB-4883-95C8-9E28F9FEF24C}"
EndProject EndProject