fix abstraction project name (big oopsie!), rename master branch to main
This commit is contained in:
parent
1644a03a09
commit
2d401dd67c
@ -1,3 +1,3 @@
|
||||
namespace OpenHarbor.Abstractions;
|
||||
namespace OpenHarbor.Storage.Abstractions;
|
||||
|
||||
public class FileAlreadyExistsException(string path) : Exception($"{path} already exists..");
|
@ -1,3 +1,3 @@
|
||||
namespace OpenHarbor.Abstractions;
|
||||
namespace OpenHarbor.Storage.Abstractions;
|
||||
|
||||
public class FileDoesNotExistException(string path) : Exception($"{path} does not exist.");
|
@ -1,4 +1,4 @@
|
||||
namespace OpenHarbor.Abstractions;
|
||||
namespace OpenHarbor.Storage.Abstractions;
|
||||
|
||||
public interface IDirectoryInfo: IDirectoryOrFile
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
namespace OpenHarbor.Abstractions;
|
||||
namespace OpenHarbor.Storage.Abstractions;
|
||||
|
||||
public interface IDirectoryOrFile
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
namespace OpenHarbor.Abstractions;
|
||||
namespace OpenHarbor.Storage.Abstractions;
|
||||
|
||||
public interface IFileInfo : IDirectoryOrFile
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using System.Text;
|
||||
|
||||
namespace OpenHarbor.Abstractions;
|
||||
namespace OpenHarbor.Storage.Abstractions;
|
||||
|
||||
public interface IStorageProvider
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
namespace OpenHarbor.Abstractions;
|
||||
namespace OpenHarbor.Storage.Abstractions;
|
||||
|
||||
public interface IWriteFileOptions
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
using Microsoft.WindowsAzure.Storage.Blob;
|
||||
using OpenHarbor.Abstractions;
|
||||
using OpenHarbor.Storage.Abstractions;
|
||||
|
||||
namespace OpenHarbor.Storage.Azure.Blob;
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
using Microsoft.WindowsAzure.Storage.Blob;
|
||||
using OpenHarbor.Abstractions;
|
||||
using OpenHarbor.Storage.Abstractions;
|
||||
|
||||
namespace OpenHarbor.Storage.Azure.Blob;
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
using System.Text;
|
||||
using Microsoft.WindowsAzure.Storage;
|
||||
using Microsoft.WindowsAzure.Storage.Blob;
|
||||
using OpenHarbor.Abstractions;
|
||||
using OpenHarbor.Storage.Abstractions;
|
||||
|
||||
namespace OpenHarbor.Storage.Azure.Blob;
|
||||
|
||||
|
@ -12,6 +12,6 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\OpenHarbor.Abstractions\OpenHarbor.Abstractions.csproj" />
|
||||
<ProjectReference Include="..\OpenHarbor.Storage.Abstractions\OpenHarbor.Storage.Abstractions.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
@ -8,6 +8,6 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\OpenHarbor.Abstractions\OpenHarbor.Abstractions.csproj" />
|
||||
<ProjectReference Include="..\OpenHarbor.Storage.Abstractions\OpenHarbor.Storage.Abstractions.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
@ -1,4 +1,4 @@
|
||||
using OpenHarbor.Abstractions;
|
||||
using OpenHarbor.Storage.Abstractions;
|
||||
|
||||
namespace OpenHarbor.Storage.Physical;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
using OpenHarbor.Abstractions;
|
||||
using OpenHarbor.Storage.Abstractions;
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
using System.Text;
|
||||
using OpenHarbor.Abstractions;
|
||||
using OpenHarbor.Storage.Abstractions;
|
||||
|
||||
namespace OpenHarbor.Storage.Physical;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
using OpenHarbor.Abstractions;
|
||||
using OpenHarbor.Storage.Abstractions;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
@ -8,7 +8,7 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\OpenHarbor.Abstractions\OpenHarbor.Abstractions.csproj" />
|
||||
<ProjectReference Include="..\OpenHarbor.Storage.Abstractions\OpenHarbor.Storage.Abstractions.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using Amazon.S3.Model;
|
||||
using OpenHarbor.Abstractions;
|
||||
using OpenHarbor.Storage.Abstractions;
|
||||
|
||||
namespace OpenHarbor.Storage.S3
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
using OpenHarbor.Abstractions;
|
||||
using OpenHarbor.Storage.Abstractions;
|
||||
|
||||
namespace OpenHarbor.Storage.S3
|
||||
{
|
||||
|
@ -3,7 +3,7 @@ using System.Text.RegularExpressions;
|
||||
using Amazon.Runtime;
|
||||
using Amazon.S3;
|
||||
using Amazon.S3.Model;
|
||||
using OpenHarbor.Abstractions;
|
||||
using OpenHarbor.Storage.Abstractions;
|
||||
|
||||
namespace OpenHarbor.Storage.S3;
|
||||
|
||||
|
@ -5,7 +5,7 @@ VisualStudioVersion = 16.0.30406.217
|
||||
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}"
|
||||
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
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenHarbor.Storage.Physical", "OpenHarbor.Storage.Physical\OpenHarbor.Storage.Physical.csproj", "{349E6B89-BEBB-4883-95C8-9E28F9FEF24C}"
|
||||
EndProject
|
||||
|
Loading…
Reference in New Issue
Block a user