Skip to content

Commit e295ec2

Browse files
authored
Merge pull request #48 from rameel/maintenance
Maintenance
2 parents 5cb3dc5 + 7eab89c commit e295ec2

File tree

4 files changed

+54
-196
lines changed

4 files changed

+54
-196
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install .NET
1818
uses: actions/setup-dotnet@v4
1919
with:
20-
dotnet-version: 9.0.x
20+
dotnet-version: 10.x
2121

2222
- name: Checkout
2323
uses: actions/checkout@v4

Ramstack.FileSystem.sln

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

Ramstack.FileSystem.slnx

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<Solution>
2+
<Folder Name="/SolutionItems/">
3+
<File Path=".editorconfig" />
4+
<File Path=".gitignore" />
5+
<File Path="Directory.Build.props" />
6+
<File Path="Directory.Packages.props" />
7+
<File Path="LICENSE" />
8+
<File Path="README.md" />
9+
</Folder>
10+
<Folder Name="/src/">
11+
<Project Path="src/Ramstack.FileSystem.Abstractions/Ramstack.FileSystem.Abstractions.csproj" />
12+
<Project Path="src/Ramstack.FileSystem.Adapters/Ramstack.FileSystem.Adapters.csproj" />
13+
<Project Path="src/Ramstack.FileSystem.Amazon/Ramstack.FileSystem.Amazon.csproj" />
14+
<Project Path="src/Ramstack.FileSystem.Azure/Ramstack.FileSystem.Azure.csproj" />
15+
<Project Path="src/Ramstack.FileSystem.Composite/Ramstack.FileSystem.Composite.csproj" />
16+
<Project Path="src/Ramstack.FileSystem.Globbing/Ramstack.FileSystem.Globbing.csproj" />
17+
<Project Path="src/Ramstack.FileSystem.Google/Ramstack.FileSystem.Google.csproj" />
18+
<Project Path="src/Ramstack.FileSystem.Physical/Ramstack.FileSystem.Physical.csproj" />
19+
<Project Path="src/Ramstack.FileSystem.Prefixed/Ramstack.FileSystem.Prefixed.csproj" />
20+
<Project Path="src/Ramstack.FileSystem.Readonly/Ramstack.FileSystem.Readonly.csproj" />
21+
<Project Path="src/Ramstack.FileSystem.Sub/Ramstack.FileSystem.Sub.csproj" />
22+
</Folder>
23+
<Folder Name="/tests/">
24+
<Project Path="tests/Ramstack.FileSystem.Abstractions.Tests/Ramstack.FileSystem.Abstractions.Tests.csproj" />
25+
<Project Path="tests/Ramstack.FileSystem.Amazon.Tests/Ramstack.FileSystem.Amazon.Tests.csproj" />
26+
<Project Path="tests/Ramstack.FileSystem.Azure.Tests/Ramstack.FileSystem.Azure.Tests.csproj" />
27+
<Project Path="tests/Ramstack.FileSystem.Composite.Tests/Ramstack.FileSystem.Composite.Tests.csproj" />
28+
<Project Path="tests/Ramstack.FileSystem.FileProvider.Tests/Ramstack.FileSystem.FileProvider.Tests.csproj" />
29+
<Project Path="tests/Ramstack.FileSystem.Globbing.Tests/Ramstack.FileSystem.Globbing.Tests.csproj" />
30+
<Project Path="tests/Ramstack.FileSystem.Google.Tests/Ramstack.FileSystem.Google.Tests.csproj" />
31+
<Project Path="tests/Ramstack.FileSystem.Physical.Tests/Ramstack.FileSystem.Physical.Tests.csproj" />
32+
<Project Path="tests/Ramstack.FileSystem.Prefixed.Tests/Ramstack.FileSystem.Prefixed.Tests.csproj" />
33+
<Project Path="tests/Ramstack.FileSystem.Readonly.Tests/Ramstack.FileSystem.Readonly.Tests.csproj" />
34+
<Project Path="tests/Ramstack.FileSystem.Specification.Tests/Ramstack.FileSystem.Specification.Tests.csproj" />
35+
<Project Path="tests/Ramstack.FileSystem.Sub.Tests/Ramstack.FileSystem.Sub.Tests.csproj" />
36+
</Folder>
37+
</Solution>

docker-compose.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
services:
2+
azurite:
3+
image: mcr.microsoft.com/azure-storage/azurite
4+
container_name: test-azurite
5+
ports:
6+
- "10000:10000"
7+
- "10001:10001"
8+
- "10002:10002"
9+
command: azurite --blobHost 0.0.0.0 --queueHost 0.0.0.0 --tableHost 0.0.0.0
10+
11+
rustfs:
12+
image: docker.io/rustfs/rustfs:latest
13+
container_name: test-rustfs
14+
ports:
15+
- "9000:9000"
16+
- "9001:9001"

0 commit comments

Comments
 (0)