Skip to content

Commit 1232e4e

Browse files
committed
package updates
1 parent 78cad13 commit 1232e4e

File tree

9 files changed

+48
-130
lines changed

9 files changed

+48
-130
lines changed

Directory.Build.props

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<Project>
2+
<PropertyGroup>
3+
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
4+
<Nullable>enable</Nullable>
5+
<LangVersion>8.0</LangVersion>
6+
<IncludeSymbols>true</IncludeSymbols>
7+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
8+
<PackageOutputPath>../NuGet</PackageOutputPath>
9+
</PropertyGroup>
10+
11+
<PropertyGroup>
12+
<PackageVersion>1.0.0-beta2</PackageVersion>
13+
<Company>SharpGrip</Company>
14+
<Authors>SharpGrip</Authors>
15+
<Copyright>SharpGrip</Copyright>
16+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
17+
<PackageReadmeFile>README.md</PackageReadmeFile>
18+
<PackageProjectUrl>https://sharpgrip.net</PackageProjectUrl>
19+
<RepositoryUrl>https://github.com/SharpGrip/FileSystem</RepositoryUrl>
20+
<RepositoryType>git</RepositoryType>
21+
</PropertyGroup>
22+
</Project>
Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,27 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
54
<RootNamespace>SharpGrip.FileSystem.Adapters.AmazonS3</RootNamespace>
6-
<Nullable>enable</Nullable>
7-
<LangVersion>8.0</LangVersion>
8-
<PackageOutputPath>../NuGet</PackageOutputPath>
9-
<IncludeSymbols>true</IncludeSymbols>
10-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
11-
<PackageReadmeFile>README.md</PackageReadmeFile>
125
</PropertyGroup>
136

147
<PropertyGroup>
158
<AssemblyName>SharpGrip.FileSystem.Adapters.AmazonS3</AssemblyName>
169
<PackageId>SharpGrip.FileSystem.Adapters.AmazonS3</PackageId>
17-
<PackageVersion>1.0.0-beta1</PackageVersion>
1810
<Title>SharpGrip FileSystem AmazonS3 adapter</Title>
1911
<Description>The SharpGrip FileSystem AmazonS3 adapter.</Description>
20-
<Company>SharpGrip</Company>
21-
<Authors>SharpGrip</Authors>
22-
<Copyright>SharpGrip</Copyright>
23-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2412
<PackageTags>sharpgrip;file-system;amazon-s3</PackageTags>
25-
<PackageProjectUrl>https://sharpgrip.net</PackageProjectUrl>
26-
<RepositoryUrl>https://github.com/SharpGrip/FileSystem</RepositoryUrl>
27-
<RepositoryType>git</RepositoryType>
2813
</PropertyGroup>
2914

3015
<ItemGroup>
31-
<None Include="..\README.md" Pack="true" PackagePath="\"/>
16+
<None Include="..\README.md" Pack="true" PackagePath="\" />
3217
</ItemGroup>
3318

3419
<ItemGroup>
35-
<PackageReference Include="AWSSDK.S3" Version="3.7.7.16"/>
20+
<PackageReference Include="AWSSDK.S3" Version="3.7.104.12" />
3621
</ItemGroup>
3722

3823
<ItemGroup>
39-
<ProjectReference Include="..\FileSystem\FileSystem.csproj"/>
24+
<ProjectReference Include="..\FileSystem\FileSystem.csproj" />
4025
</ItemGroup>
4126

4227
</Project>
Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,27 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
54
<RootNamespace>SharpGrip.FileSystem.Adapters.AzureBlobStorage</RootNamespace>
6-
<Nullable>enable</Nullable>
7-
<LangVersion>8.0</LangVersion>
8-
<PackageOutputPath>../NuGet</PackageOutputPath>
9-
<IncludeSymbols>true</IncludeSymbols>
10-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
11-
<PackageReadmeFile>README.md</PackageReadmeFile>
125
</PropertyGroup>
136

147
<PropertyGroup>
158
<AssemblyName>SharpGrip.FileSystem.Adapters.AzureBlobStorage</AssemblyName>
169
<PackageId>SharpGrip.FileSystem.Adapters.AzureBlobStorage</PackageId>
17-
<PackageVersion>1.0.0-beta1</PackageVersion>
1810
<Title>SharpGrip FileSystem AzureBlobStorage adapter</Title>
1911
<Description>The SharpGrip FileSystem AzureBlobStorage adapter.</Description>
20-
<Company>SharpGrip</Company>
21-
<Authors>SharpGrip</Authors>
22-
<Copyright>SharpGrip</Copyright>
23-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2412
<PackageTags>sharpgrip;file-system;azure-blob-storage</PackageTags>
25-
<PackageProjectUrl>https://sharpgrip.net</PackageProjectUrl>
26-
<RepositoryUrl>https://github.com/SharpGrip/FileSystem</RepositoryUrl>
27-
<RepositoryType>git</RepositoryType>
2813
</PropertyGroup>
2914

3015
<ItemGroup>
31-
<None Include="..\README.md" Pack="true" PackagePath="\"/>
16+
<None Include="..\README.md" Pack="true" PackagePath="\" />
3217
</ItemGroup>
3318

3419
<ItemGroup>
35-
<PackageReference Include="Azure.Storage.Blobs" Version="12.10.0"/>
20+
<PackageReference Include="Azure.Storage.Blobs" Version="12.16.0" />
3621
</ItemGroup>
3722

3823
<ItemGroup>
39-
<ProjectReference Include="..\FileSystem\FileSystem.csproj"/>
24+
<ProjectReference Include="..\FileSystem\FileSystem.csproj" />
4025
</ItemGroup>
4126

4227
</Project>
Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,27 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
54
<RootNamespace>SharpGrip.FileSystem.Adapters.AzureFileStorage</RootNamespace>
6-
<Nullable>enable</Nullable>
7-
<LangVersion>8.0</LangVersion>
8-
<PackageOutputPath>../NuGet</PackageOutputPath>
9-
<IncludeSymbols>true</IncludeSymbols>
10-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
11-
<PackageReadmeFile>README.md</PackageReadmeFile>
125
</PropertyGroup>
136

147
<PropertyGroup>
158
<AssemblyName>SharpGrip.FileSystem.Adapters.AzureFileStorage</AssemblyName>
169
<PackageId>SharpGrip.FileSystem.Adapters.AzureFileStorage</PackageId>
17-
<PackageVersion>1.0.0-beta1</PackageVersion>
1810
<Title>SharpGrip FileSystem AzureFileStorage adapter</Title>
1911
<Description>The SharpGrip FileSystem AzureFileStorage adapter.</Description>
20-
<Company>SharpGrip</Company>
21-
<Authors>SharpGrip</Authors>
22-
<Copyright>SharpGrip</Copyright>
23-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2412
<PackageTags>sharpgrip;file-system;azure-file-storage</PackageTags>
25-
<PackageProjectUrl>https://sharpgrip.net</PackageProjectUrl>
26-
<RepositoryUrl>https://github.com/SharpGrip/FileSystem</RepositoryUrl>
27-
<RepositoryType>git</RepositoryType>
2813
</PropertyGroup>
2914

3015
<ItemGroup>
31-
<None Include="..\README.md" Pack="true" PackagePath="\"/>
16+
<None Include="..\README.md" Pack="true" PackagePath="\" />
3217
</ItemGroup>
3318

3419
<ItemGroup>
35-
<PackageReference Include="Azure.Storage.Files.Shares" Version="12.8.0"/>
20+
<PackageReference Include="Azure.Storage.Files.Shares" Version="12.14.0" />
3621
</ItemGroup>
3722

3823
<ItemGroup>
39-
<ProjectReference Include="..\FileSystem\FileSystem.csproj"/>
24+
<ProjectReference Include="..\FileSystem\FileSystem.csproj" />
4025
</ItemGroup>
4126

4227
</Project>
Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,27 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
54
<RootNamespace>SharpGrip.FileSystem.Adapters.Dropbox</RootNamespace>
6-
<Nullable>enable</Nullable>
7-
<LangVersion>8.0</LangVersion>
8-
<PackageOutputPath>../NuGet</PackageOutputPath>
9-
<IncludeSymbols>true</IncludeSymbols>
10-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
11-
<PackageReadmeFile>README.md</PackageReadmeFile>
125
</PropertyGroup>
136

147
<PropertyGroup>
158
<AssemblyName>SharpGrip.FileSystem.Adapters.Dropbox</AssemblyName>
169
<PackageId>SharpGrip.FileSystem.Adapters.Dropbox</PackageId>
17-
<PackageVersion>1.0.0-beta1</PackageVersion>
1810
<Title>SharpGrip FileSystem Dropbox adapter</Title>
1911
<Description>The SharpGrip FileSystem Dropbox adapter.</Description>
20-
<Company>SharpGrip</Company>
21-
<Authors>SharpGrip</Authors>
22-
<Copyright>SharpGrip</Copyright>
23-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2412
<PackageTags>sharpgrip;file-system;dropbox</PackageTags>
25-
<PackageProjectUrl>https://sharpgrip.net</PackageProjectUrl>
26-
<RepositoryUrl>https://github.com/SharpGrip/FileSystem</RepositoryUrl>
27-
<RepositoryType>git</RepositoryType>
2813
</PropertyGroup>
2914

3015
<ItemGroup>
31-
<None Include="..\README.md" Pack="true" PackagePath="\"/>
16+
<None Include="..\README.md" Pack="true" PackagePath="\" />
3217
</ItemGroup>
3318

3419
<ItemGroup>
35-
<PackageReference Include="Dropbox.Api" Version="6.22.0"/>
20+
<PackageReference Include="Dropbox.Api" Version="6.37.0" />
3621
</ItemGroup>
3722

3823
<ItemGroup>
39-
<ProjectReference Include="..\FileSystem\FileSystem.csproj"/>
24+
<ProjectReference Include="..\FileSystem\FileSystem.csproj" />
4025
</ItemGroup>
4126

4227
</Project>
Lines changed: 4 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,28 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
54
<RootNamespace>SharpGrip.FileSystem.Adapters.MicrosoftOneDrive</RootNamespace>
6-
<Nullable>enable</Nullable>
7-
<LangVersion>8.0</LangVersion>
8-
<PackageOutputPath>../NuGet</PackageOutputPath>
9-
<IncludeSymbols>true</IncludeSymbols>
10-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
11-
<PackageReadmeFile>README.md</PackageReadmeFile>
125
</PropertyGroup>
136

147
<PropertyGroup>
158
<AssemblyName>SharpGrip.FileSystem.Adapters.MicrosoftOneDrive</AssemblyName>
169
<PackageId>SharpGrip.FileSystem.Adapters.MicrosoftOneDrive</PackageId>
17-
<PackageVersion>1.0.0-beta1</PackageVersion>
1810
<Title>SharpGrip FileSystem MicrosoftOneDrive adapter</Title>
1911
<Description>The SharpGrip FileSystem MicrosoftOneDrive adapter.</Description>
20-
<Company>SharpGrip</Company>
21-
<Authors>SharpGrip</Authors>
22-
<Copyright>SharpGrip</Copyright>
23-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2412
<PackageTags>sharpgrip;file-system;microsoft-onedrive</PackageTags>
25-
<PackageProjectUrl>https://sharpgrip.net</PackageProjectUrl>
26-
<RepositoryUrl>https://github.com/SharpGrip/FileSystem</RepositoryUrl>
27-
<RepositoryType>git</RepositoryType>
2813
</PropertyGroup>
2914

3015
<ItemGroup>
31-
<None Include="..\README.md" Pack="true" PackagePath="\"/>
16+
<None Include="..\README.md" Pack="true" PackagePath="\" />
3217
</ItemGroup>
3318

3419
<ItemGroup>
35-
<PackageReference Include="Microsoft.Graph" Version="4.17.0"/>
36-
<PackageReference Include="Microsoft.Identity.Client" Version="4.40.0"/>
20+
<PackageReference Include="Microsoft.Graph" Version="4.54.0" />
21+
<PackageReference Include="Microsoft.Identity.Client" Version="4.53.0" />
3722
</ItemGroup>
3823

3924
<ItemGroup>
40-
<ProjectReference Include="..\FileSystem\FileSystem.csproj"/>
25+
<ProjectReference Include="..\FileSystem\FileSystem.csproj" />
4126
</ItemGroup>
4227

4328
</Project>
Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,27 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
54
<RootNamespace>SharpGrip.FileSystem.Adapters.Sftp</RootNamespace>
6-
<Nullable>enable</Nullable>
7-
<LangVersion>8.0</LangVersion>
8-
<PackageOutputPath>../NuGet</PackageOutputPath>
9-
<IncludeSymbols>true</IncludeSymbols>
10-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
11-
<PackageReadmeFile>README.md</PackageReadmeFile>
125
</PropertyGroup>
136

147
<PropertyGroup>
158
<AssemblyName>SharpGrip.FileSystem.Adapters.Sftp</AssemblyName>
169
<PackageId>SharpGrip.FileSystem.Adapters.Sftp</PackageId>
17-
<PackageVersion>1.0.0-beta1</PackageVersion>
1810
<Title>SharpGrip FileSystem SFTP adapter</Title>
1911
<Description>The SharpGrip FileSystem SFTP adapter.</Description>
20-
<Company>SharpGrip</Company>
21-
<Authors>SharpGrip</Authors>
22-
<Copyright>SharpGrip</Copyright>
23-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2412
<PackageTags>sharpgrip;file-system;sftp</PackageTags>
25-
<PackageProjectUrl>https://sharpgrip.net</PackageProjectUrl>
26-
<RepositoryUrl>https://github.com/SharpGrip/FileSystem</RepositoryUrl>
27-
<RepositoryType>git</RepositoryType>
2813
</PropertyGroup>
2914

3015
<ItemGroup>
31-
<None Include="..\README.md" Pack="true" PackagePath="\"/>
16+
<None Include="..\README.md" Pack="true" PackagePath="\" />
3217
</ItemGroup>
3318

3419
<ItemGroup>
35-
<PackageReference Include="SSH.NET" Version="2020.0.1"/>
20+
<PackageReference Include="SSH.NET" Version="2020.0.2" />
3621
</ItemGroup>
3722

3823
<ItemGroup>
39-
<ProjectReference Include="..\FileSystem\FileSystem.csproj"/>
24+
<ProjectReference Include="..\FileSystem\FileSystem.csproj" />
4025
</ItemGroup>
4126

4227
</Project>

FileSystem/FileSystem.csproj

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
54
<RootNamespace>SharpGrip.FileSystem</RootNamespace>
6-
<Nullable>enable</Nullable>
7-
<LangVersion>8.0</LangVersion>
8-
<PackageOutputPath>../NuGet</PackageOutputPath>
9-
<IncludeSymbols>true</IncludeSymbols>
10-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
11-
<PackageReadmeFile>README.md</PackageReadmeFile>
125
</PropertyGroup>
136

147
<PropertyGroup>
158
<AssemblyName>SharpGrip.FileSystem</AssemblyName>
169
<PackageId>SharpGrip.FileSystem</PackageId>
17-
<PackageVersion>1.0.0-beta1</PackageVersion>
1810
<Title>SharpGrip FileSystem</Title>
1911
<Description>SharpGrip FileSystem is a file system abstraction supporting multiple adapters.</Description>
20-
<Company>SharpGrip</Company>
21-
<Authors>SharpGrip</Authors>
22-
<Copyright>SharpGrip</Copyright>
23-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2412
<PackageTags>sharpgrip;file-system;amazon-s3;azure-blob-storage;azure-file-storage;dropbox;microsoft-onedrive;sftp</PackageTags>
25-
<PackageProjectUrl>https://sharpgrip.net</PackageProjectUrl>
26-
<RepositoryUrl>https://github.com/SharpGrip/FileSystem</RepositoryUrl>
27-
<RepositoryType>git</RepositoryType>
2813
</PropertyGroup>
2914

3015
<ItemGroup>

Tests/Tests.csproj

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net7.0</TargetFramework>
5+
<LangVersion>latest</LangVersion>
56
<IsPackable>false</IsPackable>
67
</PropertyGroup>
78

89
<ItemGroup>
9-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
10-
<PackageReference Include="Moq" Version="4.16.1" />
11-
<PackageReference Include="xunit" Version="2.4.1" />
12-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
11+
<PackageReference Include="Moq" Version="4.18.4" />
12+
<PackageReference Include="xunit" Version="2.4.2" />
13+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
1314
<PrivateAssets>all</PrivateAssets>
1415
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1516
</PackageReference>
16-
<PackageReference Include="coverlet.collector" Version="3.1.0">
17+
<PackageReference Include="coverlet.collector" Version="3.2.0">
1718
<PrivateAssets>all</PrivateAssets>
1819
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1920
</PackageReference>

0 commit comments

Comments
 (0)