Skip to content

Commit ae399b9

Browse files
Bump to 1.1.0 and update dependency versions
1 parent 68ac598 commit ae399b9

File tree

6 files changed

+39
-34
lines changed

6 files changed

+39
-34
lines changed

Umbraco.StorageProviders.sln

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.6.30114.105
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.32014.148
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Umbraco.StorageProviders.AzureBlob", "src\Umbraco.StorageProviders.AzureBlob\Umbraco.StorageProviders.AzureBlob.csproj", "{99A3FCBE-FDC6-4580-BDB8-7D219C6D98C3}"
77
EndProject
@@ -10,6 +10,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1010
.editorconfig = .editorconfig
1111
.gitattributes = .gitattributes
1212
.gitignore = .gitignore
13+
azure-pipelines.yml = azure-pipelines.yml
14+
src\Directory.Build.props = src\Directory.Build.props
1315
LICENSE = LICENSE
1416
NuGet.config = NuGet.config
1517
README.md = README.md
File renamed without changes.

Build/build.ps1 renamed to build/build.ps1

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@
4444
$src = "$($this.SolutionRoot)\src"
4545
$log = "$($this.BuildTemp)\dotnet.build.umbraco.log"
4646

47-
if ($this.BuildEnv.VisualStudio -eq $null)
48-
{
49-
throw "Build environment does not provide VisualStudio."
50-
}
51-
5247
Write-Host "Compile Umbraco.StorageProviders.AzureBlob"
5348
Write-Host "Logging to $log"
5449

src/Directory.Build.props

Lines changed: 31 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,33 @@
1-
<Project>
2-
<PropertyGroup>
3-
<AssemblyVersion>1.0.0</AssemblyVersion>
4-
<InformationalVersion>1.0.0</InformationalVersion>
5-
<FileVersion>1.0.0.0</FileVersion>
6-
<NeutralLanguage>en-US</NeutralLanguage>
7-
<Company>Umbraco</Company>
8-
<Copyright>Copyright © Umbraco 2021</Copyright>
9-
<Authors>Umbraco HQ</Authors>
10-
<PackageProjectUrl>https://github.com/umbraco/Umbraco.StorageProviders</PackageProjectUrl>
11-
<PackageIconUrl>https://umbraco.com/dist/nuget/logo-small.png</PackageIconUrl>
12-
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
13-
<PackageTags>umbraco storage</PackageTags>
14-
<TargetFramework>net5.0</TargetFramework>
15-
</PropertyGroup>
1+
<Project>
2+
<PropertyGroup>
3+
<Version>1.1.0</Version>
4+
<AssemblyVersion>1.1.0</AssemblyVersion>
5+
<InformationalVersion>1.1.0.0</InformationalVersion>
6+
<FileVersion>1.1.0</FileVersion>
7+
<LangVersion Condition="'$(LangVersion)' == ''">9.0</LangVersion>
8+
<NeutralLanguage>en-US</NeutralLanguage>
9+
<Company>Umbraco</Company>
10+
<Copyright>Copyright © Umbraco 2022</Copyright>
11+
<Authors>Umbraco HQ</Authors>
12+
<PackageProjectUrl>https://github.com/umbraco/Umbraco.StorageProviders</PackageProjectUrl>
13+
<PackageIconUrl>https://umbraco.com/dist/nuget/logo-small.png</PackageIconUrl>
14+
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
15+
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
16+
<PackageTags>umbraco storage</PackageTags>
17+
<RepositoryType>git</RepositoryType>
18+
<RepositoryUrl>https://github.com/umbraco/Umbraco.StorageProviders</RepositoryUrl>
19+
</PropertyGroup>
20+
21+
<PropertyGroup>
22+
<!-- SourceLink: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element)-->
23+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
24+
25+
<!-- SourceLink: Embed source files that are not tracked by the source control manager in the PDB -->
26+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
27+
28+
<!-- SourceLink: Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
29+
<IncludeSymbols>true</IncludeSymbols>
30+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
31+
</PropertyGroup>
1632
</Project>
1733

src/Umbraco.StorageProviders.AzureBlob/Umbraco.StorageProviders.AzureBlob.csproj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
<Nullable>enable</Nullable>
55
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
7-
<description>Azure blob storage plugin for Umbraco CMS</description>
7+
<Description>Azure Blob Storage file system provider for Umbraco CMS</Description>
88
</PropertyGroup>
9+
910
<ItemGroup>
10-
<PackageReference Include="Azure.Storage.Blobs" Version="12.10.0" />
11-
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="5.0.3" PrivateAssets="all" />
12-
<PackageReference Include="SixLabors.ImageSharp.Web.Providers.Azure" Version="1.0.3" />
13-
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.27.0.35380" PrivateAssets="all" />
1411
<PackageReference Include="Umbraco.Cms.Web.Common" Version="9.0.0" />
12+
<PackageReference Include="SixLabors.ImageSharp.Web.Providers.Azure" Version="1.0.5" />
13+
<PackageReference Include="Azure.Storage.Blobs" Version="12.11.0" />
1514
</ItemGroup>
1615
</Project>

src/Umbraco.StorageProviders.AzureBlob/version.json

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

0 commit comments

Comments
 (0)