Skip to content

Commit c697545

Browse files
committed
1.0.1
1 parent ec2aea8 commit c697545

File tree

19 files changed

+32
-76
lines changed

19 files changed

+32
-76
lines changed

DistributedFileStorage.Abstractions/DistributedFileStorage.Abstractions.csproj

Lines changed: 0 additions & 30 deletions
This file was deleted.

DistributedFileStorage.EntityFrameworkCore/DistributedFileStorage.EntityFrameworkCore.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
<Nullable>enable</Nullable>
77
<SignAssembly>True</SignAssembly>
88
<AssemblyOriginatorKeyFile>..\DistributedFileStorage.snk</AssemblyOriginatorKeyFile>
9-
<AssemblyVersion>1.0.0</AssemblyVersion>
10-
<FileVersion>1.0.0</FileVersion>
11-
<Version>1.0.0</Version>
9+
<AssemblyVersion>1.0.1</AssemblyVersion>
10+
<FileVersion>1.0.1</FileVersion>
11+
<Version>1.0.1</Version>
1212
<Company></Company>
1313
<Authors>Leonid Salavatov</Authors>
1414
<Copyright>Leonid Salavatov 2021</Copyright>
1515
<PackageId>DistributedFileStorage.EntityFrameworkCore</PackageId>
1616
<Product>DistributedFileStorage.EntityFrameworkCore</Product>
1717
<Title>DistributedFileStorage.EntityFrameworkCore</Title>
18-
<Description>.NET Distributed file storage with EntityFrameworkCore implementation of IDfsDatabase</Description>
19-
<PackageTags>distributed filestorage entityframework efcore dfs dotnet</PackageTags>
18+
<Description>.NET DistributedFileStorage with EntityFrameworkCore</Description>
19+
<PackageTags>distributed filestorage blobstorage entityframework efcore blob dfs dotnet</PackageTags>
2020
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2121
<PackageProjectUrl>https://github.com/mustaddon/DistributedFileStorage</PackageProjectUrl>
2222
<RepositoryUrl>https://github.com/mustaddon/DistributedFileStorage</RepositoryUrl>
@@ -28,7 +28,7 @@
2828
</PropertyGroup>
2929

3030
<ItemGroup>
31-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.10" />
31+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.11" />
3232
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
3333
</ItemGroup>
3434

DistributedFileStorage.EntityFrameworkCore/Extensions.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using DistributedFileStorage;
2-
using DistributedFileStorage.Abstractions;
32
using DistributedFileStorage.EntityFrameworkCore;
43
using System;
54

@@ -14,7 +13,7 @@ public static IServiceCollection AddDfsEfc(this IServiceCollection services,
1413
}
1514

1615
public static IServiceCollection AddDfsEfc<TMetadata>(this IServiceCollection services,
17-
Action<IServiceProvider, DfsEfcOptions> optionsBuilder,
16+
Action<IServiceProvider, DfsEfcOptions> optionsBuilder,
1817
ServiceLifetime lifetime = ServiceLifetime.Scoped)
1918
{
2019
services.Add(new ServiceDescriptor(typeof(DfsEfcOptions), x =>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# DistributedFileStorage.EntityFrameworkCore [![NuGet version](https://badge.fury.io/nu/DistributedFileStorage.EntityFrameworkCore.svg)](http://badge.fury.io/nu/DistributedFileStorage.EntityFrameworkCore)
2-
.NET Distributed file storage with EntityFrameworkCore implementation of IDfsDatabase
2+
.NET DistributedFileStorage with EntityFrameworkCore implementation of IDfsDatabase
33

DistributedFileStorage.MongoDB/DistributedFileStorage.MongoDB.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
<Nullable>enable</Nullable>
77
<SignAssembly>True</SignAssembly>
88
<AssemblyOriginatorKeyFile>..\DistributedFileStorage.snk</AssemblyOriginatorKeyFile>
9-
<AssemblyVersion>1.0.0</AssemblyVersion>
10-
<FileVersion>1.0.0</FileVersion>
11-
<Version>1.0.0</Version>
9+
<AssemblyVersion>1.0.1</AssemblyVersion>
10+
<FileVersion>1.0.1</FileVersion>
11+
<Version>1.0.1</Version>
1212
<Company></Company>
1313
<Authors>Leonid Salavatov</Authors>
1414
<Copyright>Leonid Salavatov 2021</Copyright>
1515
<PackageId>DistributedFileStorage.MongoDB</PackageId>
1616
<Product>DistributedFileStorage.MongoDB</Product>
1717
<Title>DistributedFileStorage.MongoDB</Title>
18-
<Description>.NET Distributed file storage with MongoDB implementation of IDfsDatabase</Description>
19-
<PackageTags>distributed filestorage mongodb dfs dotnet</PackageTags>
18+
<Description>.NET DistributedFileStorage with MongoDB</Description>
19+
<PackageTags>distributed filestorage blobstorage mongodb mongo blob dfs dotnet</PackageTags>
2020
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2121
<PackageProjectUrl>https://github.com/mustaddon/DistributedFileStorage</PackageProjectUrl>
2222
<RepositoryUrl>https://github.com/mustaddon/DistributedFileStorage</RepositoryUrl>

DistributedFileStorage.MongoDB/Extensions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using DistributedFileStorage;
2-
using DistributedFileStorage.Abstractions;
32
using DistributedFileStorage.MongoDB;
43
using System;
54

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# DistributedFileStorage.MongoDB [![NuGet version](https://badge.fury.io/nu/DistributedFileStorage.MongoDB.svg)](http://badge.fury.io/nu/DistributedFileStorage.MongoDB)
2-
.NET Distributed file storage with MongoDB implementation of IDfsDatabase
2+
.NET DistributedFileStorage with MongoDB implementation of IDfsDatabase
33

DistributedFileStorage.sln

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ VisualStudioVersion = 17.0.31717.71
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DistributedFileStorage", "DistributedFileStorage\DistributedFileStorage.csproj", "{A160F24D-3563-44CC-92F3-F6A3F569297D}"
77
EndProject
8-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DistributedFileStorage.Abstractions", "DistributedFileStorage.Abstractions\DistributedFileStorage.Abstractions.csproj", "{EAF57AF3-838C-4421-9549-4AE6EAFDB4AB}"
9-
EndProject
108
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DistributedFileStorage.EntityFrameworkCore", "DistributedFileStorage.EntityFrameworkCore\DistributedFileStorage.EntityFrameworkCore.csproj", "{0D03322A-4BA8-403E-A083-FF135DE1A63E}"
119
EndProject
1210
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{0A22B75C-D6D9-475E-AB10-661739782ADB}"
@@ -28,11 +26,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestEfc", "Tests\TestEfc\Te
2826
EndProject
2927
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestMongo", "Tests\TestMongo\TestMongo.csproj", "{6F5EA9FD-C3BE-4400-A37F-43625C8C96B1}"
3028
EndProject
31-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example.Common", "Examples\Example.Common\Example.Common.csproj", "{406F4694-D2A2-4CF6-817F-0DFD4621BFA4}"
29+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example.Common", "Examples\Example.Common\Example.Common.csproj", "{406F4694-D2A2-4CF6-817F-0DFD4621BFA4}"
3230
EndProject
33-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example.ConsoleApp.EFCore", "Examples\Example.ConsoleApp.EFCore\Example.ConsoleApp.EFCore.csproj", "{96F10BBA-98C9-43DC-A351-E2C726B32DE2}"
31+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example.ConsoleApp.EFCore", "Examples\Example.ConsoleApp.EFCore\Example.ConsoleApp.EFCore.csproj", "{96F10BBA-98C9-43DC-A351-E2C726B32DE2}"
3432
EndProject
35-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example.ConsoleApp.MongoDB", "Examples\Example.ConsoleApp.MongoDB\Example.ConsoleApp.MongoDB.csproj", "{20878D21-81A1-42B6-9CCF-010B01201004}"
33+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example.ConsoleApp.MongoDB", "Examples\Example.ConsoleApp.MongoDB\Example.ConsoleApp.MongoDB.csproj", "{20878D21-81A1-42B6-9CCF-010B01201004}"
3634
EndProject
3735
Project("{00D1A9C2-B5F0-4AF3-8072-F6C62B433612}") = "Example.Database.MsSql", "Examples\Example.Database.MsSql\Example.Database.MsSql.sqlproj", "{E27C215A-962E-426A-B452-A2014CED7866}"
3836
EndProject
@@ -46,10 +44,6 @@ Global
4644
{A160F24D-3563-44CC-92F3-F6A3F569297D}.Debug|Any CPU.Build.0 = Debug|Any CPU
4745
{A160F24D-3563-44CC-92F3-F6A3F569297D}.Release|Any CPU.ActiveCfg = Release|Any CPU
4846
{A160F24D-3563-44CC-92F3-F6A3F569297D}.Release|Any CPU.Build.0 = Release|Any CPU
49-
{EAF57AF3-838C-4421-9549-4AE6EAFDB4AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
50-
{EAF57AF3-838C-4421-9549-4AE6EAFDB4AB}.Debug|Any CPU.Build.0 = Debug|Any CPU
51-
{EAF57AF3-838C-4421-9549-4AE6EAFDB4AB}.Release|Any CPU.ActiveCfg = Release|Any CPU
52-
{EAF57AF3-838C-4421-9549-4AE6EAFDB4AB}.Release|Any CPU.Build.0 = Release|Any CPU
5347
{0D03322A-4BA8-403E-A083-FF135DE1A63E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5448
{0D03322A-4BA8-403E-A083-FF135DE1A63E}.Debug|Any CPU.Build.0 = Debug|Any CPU
5549
{0D03322A-4BA8-403E-A083-FF135DE1A63E}.Release|Any CPU.ActiveCfg = Release|Any CPU

DistributedFileStorage.Abstractions/DfsExtensions.cs renamed to DistributedFileStorage/DfsExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Threading;
55
using System.Threading.Tasks;
66

7-
namespace DistributedFileStorage.Abstractions
7+
namespace DistributedFileStorage
88
{
99
public static class DfsExtensions
1010
{

DistributedFileStorage.Abstractions/DfsFileInfo.cs renamed to DistributedFileStorage/DfsFileInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace DistributedFileStorage.Abstractions
1+
namespace DistributedFileStorage
22
{
33
public class DfsFileInfo<TMetadata> : IDfsFileInfo<TMetadata>
44
{

0 commit comments

Comments
 (0)