Skip to content

Commit 4990a1e

Browse files
authored
Merge pull request #45 from rameel/remove-zipfs
Remove obsolete ZipFileSystem
2 parents bdc71bb + d7a05cd commit 4990a1e

File tree

20 files changed

+0
-676
lines changed

20 files changed

+0
-676
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@ if (!fs.IsReadOnly)
142142
- [Ramstack.FileSystem.Azure](https://www.nuget.org/packages/Ramstack.FileSystem.Azure) - Provides an implementation using Azure Blob storage.
143143
- [Ramstack.FileSystem.Amazon](https://www.nuget.org/packages/Ramstack.FileSystem.Amazon) - Provides an implementation using Amazon S3 storage.
144144
- [Ramstack.FileSystem.Google](https://www.nuget.org/packages/Ramstack.FileSystem.Google) - Provides an implementation using Google Cloud storage.
145-
- [Ramstack.FileSystem.Zip](https://www.nuget.org/packages/Ramstack.FileSystem.Zip) - Provides an implementation based on ZIP archives.
146145
- [Ramstack.FileSystem.Readonly](https://www.nuget.org/packages/Ramstack.FileSystem.Readonly) - Provides a read-only wrapper for the underlying file system.
147146
- [Ramstack.FileSystem.Globbing](https://www.nuget.org/packages/Ramstack.FileSystem.Globbing) - Wraps the file system, filtering files and directories using glob patterns.
148147
- [Ramstack.FileSystem.Prefixed](https://www.nuget.org/packages/Ramstack.FileSystem.Prefixed) - Adds a prefix to file paths within the underlying file system.

Ramstack.FileSystem.sln

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ramstack.FileSystem.Sub", "
2828
EndProject
2929
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ramstack.FileSystem.Readonly", "src\Ramstack.FileSystem.Readonly\Ramstack.FileSystem.Readonly.csproj", "{29351AE9-EC9B-4D4F-B9C0-A9DC46409084}"
3030
EndProject
31-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ramstack.FileSystem.Zip", "src\Ramstack.FileSystem.Zip\Ramstack.FileSystem.Zip.csproj", "{A83298E7-63ED-4D40-A7E9-97E635964046}"
32-
EndProject
3331
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ramstack.FileSystem.Globbing", "src\Ramstack.FileSystem.Globbing\Ramstack.FileSystem.Globbing.csproj", "{2CA617DF-C8EE-4557-8F3A-3A6A847EA76E}"
3432
EndProject
3533
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ramstack.FileSystem.Abstractions.Tests", "tests\Ramstack.FileSystem.Abstractions.Tests\Ramstack.FileSystem.Abstractions.Tests.csproj", "{A01A33F1-5A34-4360-8A30-EC84ADC32362}"
@@ -42,8 +40,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ramstack.FileSystem.Prefixe
4240
EndProject
4341
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ramstack.FileSystem.Sub.Tests", "tests\Ramstack.FileSystem.Sub.Tests\Ramstack.FileSystem.Sub.Tests.csproj", "{0A8A9C37-708F-4904-AEEA-7B3F203D0B89}"
4442
EndProject
45-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ramstack.FileSystem.Zip.Tests", "tests\Ramstack.FileSystem.Zip.Tests\Ramstack.FileSystem.Zip.Tests.csproj", "{FC3389DF-AF1B-4234-9399-EE9DA7A07E31}"
46-
EndProject
4743
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ramstack.FileSystem.Azure.Tests", "tests\Ramstack.FileSystem.Azure.Tests\Ramstack.FileSystem.Azure.Tests.csproj", "{3D5D46F7-AEB5-4CEE-8C9E-8EB4CAF15CCD}"
4844
EndProject
4945
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ramstack.FileSystem.Adapters", "src\Ramstack.FileSystem.Adapters\Ramstack.FileSystem.Adapters.csproj", "{CDAD5CF2-ACE0-4114-9DF7-B71474196B9E}"
@@ -96,10 +92,6 @@ Global
9692
{29351AE9-EC9B-4D4F-B9C0-A9DC46409084}.Debug|Any CPU.Build.0 = Debug|Any CPU
9793
{29351AE9-EC9B-4D4F-B9C0-A9DC46409084}.Release|Any CPU.ActiveCfg = Release|Any CPU
9894
{29351AE9-EC9B-4D4F-B9C0-A9DC46409084}.Release|Any CPU.Build.0 = Release|Any CPU
99-
{A83298E7-63ED-4D40-A7E9-97E635964046}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
100-
{A83298E7-63ED-4D40-A7E9-97E635964046}.Debug|Any CPU.Build.0 = Debug|Any CPU
101-
{A83298E7-63ED-4D40-A7E9-97E635964046}.Release|Any CPU.ActiveCfg = Release|Any CPU
102-
{A83298E7-63ED-4D40-A7E9-97E635964046}.Release|Any CPU.Build.0 = Release|Any CPU
10395
{2CA617DF-C8EE-4557-8F3A-3A6A847EA76E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
10496
{2CA617DF-C8EE-4557-8F3A-3A6A847EA76E}.Debug|Any CPU.Build.0 = Debug|Any CPU
10597
{2CA617DF-C8EE-4557-8F3A-3A6A847EA76E}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -124,10 +116,6 @@ Global
124116
{0A8A9C37-708F-4904-AEEA-7B3F203D0B89}.Debug|Any CPU.Build.0 = Debug|Any CPU
125117
{0A8A9C37-708F-4904-AEEA-7B3F203D0B89}.Release|Any CPU.ActiveCfg = Release|Any CPU
126118
{0A8A9C37-708F-4904-AEEA-7B3F203D0B89}.Release|Any CPU.Build.0 = Release|Any CPU
127-
{FC3389DF-AF1B-4234-9399-EE9DA7A07E31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
128-
{FC3389DF-AF1B-4234-9399-EE9DA7A07E31}.Debug|Any CPU.Build.0 = Debug|Any CPU
129-
{FC3389DF-AF1B-4234-9399-EE9DA7A07E31}.Release|Any CPU.ActiveCfg = Release|Any CPU
130-
{FC3389DF-AF1B-4234-9399-EE9DA7A07E31}.Release|Any CPU.Build.0 = Release|Any CPU
131119
{3D5D46F7-AEB5-4CEE-8C9E-8EB4CAF15CCD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
132120
{3D5D46F7-AEB5-4CEE-8C9E-8EB4CAF15CCD}.Debug|Any CPU.Build.0 = Debug|Any CPU
133121
{3D5D46F7-AEB5-4CEE-8C9E-8EB4CAF15CCD}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -183,14 +171,12 @@ Global
183171
{BBAFC684-6EEC-40CC-9016-B1389EB9DC2F} = {778473B7-67CD-4F46-93B8-B2FF5046E492}
184172
{5A0795D2-D1C1-4836-8939-89A9655C5993} = {778473B7-67CD-4F46-93B8-B2FF5046E492}
185173
{29351AE9-EC9B-4D4F-B9C0-A9DC46409084} = {778473B7-67CD-4F46-93B8-B2FF5046E492}
186-
{A83298E7-63ED-4D40-A7E9-97E635964046} = {778473B7-67CD-4F46-93B8-B2FF5046E492}
187174
{2CA617DF-C8EE-4557-8F3A-3A6A847EA76E} = {778473B7-67CD-4F46-93B8-B2FF5046E492}
188175
{A01A33F1-5A34-4360-8A30-EC84ADC32362} = {FDD0140D-CFCB-4875-990F-BF1227CD3CF6}
189176
{3BC4E91D-ECDC-4BD4-93A7-34C1D7CF2973} = {FDD0140D-CFCB-4875-990F-BF1227CD3CF6}
190177
{2AB7DD23-4788-4C94-A63E-BD4AFDDDEFB3} = {FDD0140D-CFCB-4875-990F-BF1227CD3CF6}
191178
{757C9DA0-D56A-404B-A54F-026B6F482A01} = {FDD0140D-CFCB-4875-990F-BF1227CD3CF6}
192179
{0A8A9C37-708F-4904-AEEA-7B3F203D0B89} = {FDD0140D-CFCB-4875-990F-BF1227CD3CF6}
193-
{FC3389DF-AF1B-4234-9399-EE9DA7A07E31} = {FDD0140D-CFCB-4875-990F-BF1227CD3CF6}
194180
{3D5D46F7-AEB5-4CEE-8C9E-8EB4CAF15CCD} = {FDD0140D-CFCB-4875-990F-BF1227CD3CF6}
195181
{CDAD5CF2-ACE0-4114-9DF7-B71474196B9E} = {778473B7-67CD-4F46-93B8-B2FF5046E492}
196182
{92BE6661-6630-442F-A352-8273B38F08C8} = {FDD0140D-CFCB-4875-990F-BF1227CD3CF6}

src/Ramstack.FileSystem.Abstractions/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ if (!fs.IsReadOnly)
150150
- [Ramstack.FileSystem.Azure](https://www.nuget.org/packages/Ramstack.FileSystem.Azure) - Provides an implementation using Azure Blob storage.
151151
- [Ramstack.FileSystem.Amazon](https://www.nuget.org/packages/Ramstack.FileSystem.Amazon) - Provides an implementation using Amazon S3 storage.
152152
- [Ramstack.FileSystem.Google](https://www.nuget.org/packages/Ramstack.FileSystem.Google) - Provides an implementation using Google Cloud storage.
153-
- [Ramstack.FileSystem.Zip](https://www.nuget.org/packages/Ramstack.FileSystem.Zip) - Provides an implementation based on ZIP archives.
154153
- [Ramstack.FileSystem.Readonly](https://www.nuget.org/packages/Ramstack.FileSystem.Readonly) - Provides a read-only wrapper for the underlying file system.
155154
- [Ramstack.FileSystem.Globbing](https://www.nuget.org/packages/Ramstack.FileSystem.Globbing) - Wraps the file system, filtering files and directories using glob patterns.
156155
- [Ramstack.FileSystem.Prefixed](https://www.nuget.org/packages/Ramstack.FileSystem.Prefixed) - Adds a prefix to file paths within the underlying file system.

src/Ramstack.FileSystem.Adapters/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ await foreach (VirtualFile file in fs.GetFilesAsync("/"))
3939
- [Ramstack.FileSystem.Azure](https://www.nuget.org/packages/Ramstack.FileSystem.Azure) - Provides an implementation using Azure Blob storage.
4040
- [Ramstack.FileSystem.Amazon](https://www.nuget.org/packages/Ramstack.FileSystem.Amazon) - Provides an implementation using Amazon S3 storage.
4141
- [Ramstack.FileSystem.Google](https://www.nuget.org/packages/Ramstack.FileSystem.Google) - Provides an implementation using Google Cloud storage.
42-
- [Ramstack.FileSystem.Zip](https://www.nuget.org/packages/Ramstack.FileSystem.Zip) - Provides an implementation based on ZIP archives.
4342
- [Ramstack.FileSystem.Readonly](https://www.nuget.org/packages/Ramstack.FileSystem.Readonly) - Provides a read-only wrapper for the underlying file system.
4443
- [Ramstack.FileSystem.Globbing](https://www.nuget.org/packages/Ramstack.FileSystem.Globbing) - Wraps the file system, filtering files and directories using glob patterns.
4544
- [Ramstack.FileSystem.Prefixed](https://www.nuget.org/packages/Ramstack.FileSystem.Prefixed) - Adds a prefix to file paths within the underlying file system.

src/Ramstack.FileSystem.Amazon/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ AmazonS3FileSystem fs = new AmazonS3FileSystem(
4949
- [Ramstack.FileSystem.Physical](https://www.nuget.org/packages/Ramstack.FileSystem.Physical) - Provides an implementation based on the local file system.
5050
- [Ramstack.FileSystem.Azure](https://www.nuget.org/packages/Ramstack.FileSystem.Azure) - Provides an implementation using Azure Blob storage.
5151
- [Ramstack.FileSystem.Google](https://www.nuget.org/packages/Ramstack.FileSystem.Google) - Provides an implementation using Google Cloud storage.
52-
- [Ramstack.FileSystem.Zip](https://www.nuget.org/packages/Ramstack.FileSystem.Zip) - Provides an implementation based on ZIP archives.
5352
- [Ramstack.FileSystem.Readonly](https://www.nuget.org/packages/Ramstack.FileSystem.Readonly) - Provides a read-only wrapper for the underlying file system.
5453
- [Ramstack.FileSystem.Globbing](https://www.nuget.org/packages/Ramstack.FileSystem.Globbing) - Wraps the file system, filtering files and directories using glob patterns.
5554
- [Ramstack.FileSystem.Prefixed](https://www.nuget.org/packages/Ramstack.FileSystem.Prefixed) - Adds a prefix to file paths within the underlying file system.

src/Ramstack.FileSystem.Azure/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ AzureFileSystem fs = new AzureFileSystem(connectionString, containerName: "stora
4141
- [Ramstack.FileSystem.Physical](https://www.nuget.org/packages/Ramstack.FileSystem.Physical) - Provides an implementation based on the local file system.
4242
- [Ramstack.FileSystem.Amazon](https://www.nuget.org/packages/Ramstack.FileSystem.Amazon) - Provides an implementation using Amazon S3 storage.
4343
- [Ramstack.FileSystem.Google](https://www.nuget.org/packages/Ramstack.FileSystem.Google) - Provides an implementation using Google Cloud storage.
44-
- [Ramstack.FileSystem.Zip](https://www.nuget.org/packages/Ramstack.FileSystem.Zip) - Provides an implementation based on ZIP archives.
4544
- [Ramstack.FileSystem.Readonly](https://www.nuget.org/packages/Ramstack.FileSystem.Readonly) - Provides a read-only wrapper for the underlying file system.
4645
- [Ramstack.FileSystem.Globbing](https://www.nuget.org/packages/Ramstack.FileSystem.Globbing) - Wraps the file system, filtering files and directories using glob patterns.
4746
- [Ramstack.FileSystem.Prefixed](https://www.nuget.org/packages/Ramstack.FileSystem.Prefixed) - Adds a prefix to file paths within the underlying file system.

src/Ramstack.FileSystem.Composite/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ await foreach (VirtualFile file in fs.GetFilesAsync("/"))
3333
- [Ramstack.FileSystem.Azure](https://www.nuget.org/packages/Ramstack.FileSystem.Azure) - Provides an implementation using Azure Blob storage.
3434
- [Ramstack.FileSystem.Amazon](https://www.nuget.org/packages/Ramstack.FileSystem.Amazon) - Provides an implementation using Amazon S3 storage.
3535
- [Ramstack.FileSystem.Google](https://www.nuget.org/packages/Ramstack.FileSystem.Google) - Provides an implementation using Google Cloud storage.
36-
- [Ramstack.FileSystem.Zip](https://www.nuget.org/packages/Ramstack.FileSystem.Zip) - Provides an implementation based on ZIP archives.
3736
- [Ramstack.FileSystem.Readonly](https://www.nuget.org/packages/Ramstack.FileSystem.Readonly) - Provides a read-only wrapper for the underlying file system.
3837
- [Ramstack.FileSystem.Globbing](https://www.nuget.org/packages/Ramstack.FileSystem.Globbing) - Wraps the file system, filtering files and directories using glob patterns.
3938
- [Ramstack.FileSystem.Prefixed](https://www.nuget.org/packages/Ramstack.FileSystem.Prefixed) - Adds a prefix to file paths within the underlying file system.

src/Ramstack.FileSystem.Globbing/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ await foreach (VirtualFile file in fs.GetFilesAsync("/"))
3838
- [Ramstack.FileSystem.Azure](https://www.nuget.org/packages/Ramstack.FileSystem.Azure) - Provides an implementation using Azure Blob storage.
3939
- [Ramstack.FileSystem.Amazon](https://www.nuget.org/packages/Ramstack.FileSystem.Amazon) - Provides an implementation using Amazon S3 storage.
4040
- [Ramstack.FileSystem.Google](https://www.nuget.org/packages/Ramstack.FileSystem.Google) - Provides an implementation using Google Cloud storage.
41-
- [Ramstack.FileSystem.Zip](https://www.nuget.org/packages/Ramstack.FileSystem.Zip) - Provides an implementation based on ZIP archives.
4241
- [Ramstack.FileSystem.Readonly](https://www.nuget.org/packages/Ramstack.FileSystem.Readonly) - Provides a read-only wrapper for the underlying file system.
4342
- [Ramstack.FileSystem.Prefixed](https://www.nuget.org/packages/Ramstack.FileSystem.Prefixed) - Adds a prefix to file paths within the underlying file system.
4443
- [Ramstack.FileSystem.Sub](https://www.nuget.org/packages/Ramstack.FileSystem.Sub) - Wraps the underlying file system, restricting access to a specific subpath.

src/Ramstack.FileSystem.Google/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ GoogleFileSystem fs = new GoogleFileSystem(client, bucketName: "my-bucket")
4444
- [Ramstack.FileSystem.Physical](https://www.nuget.org/packages/Ramstack.FileSystem.Physical) - Provides an implementation based on the local file system.
4545
- [Ramstack.FileSystem.Azure](https://www.nuget.org/packages/Ramstack.FileSystem.Azure) - Provides an implementation using Azure Blob storage.
4646
- [Ramstack.FileSystem.Amazon](https://www.nuget.org/packages/Ramstack.FileSystem.Amazon) - Provides an implementation using Amazon S3 storage.
47-
- [Ramstack.FileSystem.Zip](https://www.nuget.org/packages/Ramstack.FileSystem.Zip) - Provides an implementation based on ZIP archives.
4847
- [Ramstack.FileSystem.Readonly](https://www.nuget.org/packages/Ramstack.FileSystem.Readonly) - Provides a read-only wrapper for the underlying file system.
4948
- [Ramstack.FileSystem.Globbing](https://www.nuget.org/packages/Ramstack.FileSystem.Globbing) - Wraps the file system, filtering files and directories using glob patterns.
5049
- [Ramstack.FileSystem.Prefixed](https://www.nuget.org/packages/Ramstack.FileSystem.Prefixed) - Adds a prefix to file paths within the underlying file system.

src/Ramstack.FileSystem.Physical/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ PhysicalFileSystem fs = new PhysicalFileSystem(@"C:\path\to\directory")
3939
- [Ramstack.FileSystem.Azure](https://www.nuget.org/packages/Ramstack.FileSystem.Azure) - Provides an implementation using Azure Blob storage.
4040
- [Ramstack.FileSystem.Amazon](https://www.nuget.org/packages/Ramstack.FileSystem.Amazon) - Provides an implementation using Amazon S3 storage.
4141
- [Ramstack.FileSystem.Google](https://www.nuget.org/packages/Ramstack.FileSystem.Google) - Provides an implementation using Google Cloud storage.
42-
- [Ramstack.FileSystem.Zip](https://www.nuget.org/packages/Ramstack.FileSystem.Zip) - Provides an implementation based on ZIP archives.
4342
- [Ramstack.FileSystem.Readonly](https://www.nuget.org/packages/Ramstack.FileSystem.Readonly) - Provides a read-only wrapper for the underlying file system.
4443
- [Ramstack.FileSystem.Globbing](https://www.nuget.org/packages/Ramstack.FileSystem.Globbing) - Wraps the file system, filtering files and directories using glob patterns.
4544
- [Ramstack.FileSystem.Prefixed](https://www.nuget.org/packages/Ramstack.FileSystem.Prefixed) - Adds a prefix to file paths within the underlying file system.

0 commit comments

Comments
 (0)