-
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use centralized ruleset and add Azure project * Add implementations. * Update names * Update Azure resolver to latest API * Fix DI * Cleanup * Update AzureBlobStorageImageProvider.cs * Update Azure deps * Fix build * Drop IImageProvider settings * Drop IImageCache Settings * Simplify configuration. * Add Azure Provider integration tests. * Update appveyor.yml * Attempt to use Azurite for Azure tests * Update .travis.yml * Use expanded commands * Use build root * Run in background. * Skip test for now. * Push both artifacts * Fix artifact path * Update ImageSharp
- Loading branch information
1 parent
0ad58bb
commit 75fd113
Showing
44 changed files
with
701 additions
and
453 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "standards"] | ||
path = standards | ||
url = https://github.com/SixLabors/Standards |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
src/ImageSharp.Web.Providers.Azure/ImageSharp.Web.Providers.Azure.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<AssemblyTitle>SixLabors.ImageSharp.Web.Providers.Azure</AssemblyTitle> | ||
<Authors>Six Labors and contributors</Authors> | ||
<Company>Six Labors</Company> | ||
<Copyright>Copyright (c) Six Labors and contributors.</Copyright> | ||
<Product>SixLabors.ImageSharp.Web.Providers.Azure</Product> | ||
<Description>A provider for resolving images via Azure Blob Storage.</Description> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
|
||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<LangVersion>7.3</LangVersion> | ||
|
||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<AssemblyName>SixLabors.ImageSharp.Web.Providers.Azure</AssemblyName> | ||
<PackageId>SixLabors.ImageSharp.Web.Providers.Azure</PackageId> | ||
<PackageTags>Image Middleware Resize Crop Gif Jpg Jpeg Bitmap Png Azure</PackageTags> | ||
<PackageIconUrl>https://raw.githubusercontent.com/SixLabors/Branding/master/icons/imagesharp/sixlabors.imagesharp.128.png</PackageIconUrl> | ||
<PackageProjectUrl>https://github.com/SixLabors/ImageSharp.Web</PackageProjectUrl> | ||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/SixLabors/ImageSharp.Web</RepositoryUrl> | ||
|
||
<DebugType Condition="$(codecov) != ''">full</DebugType> | ||
<DebugType Condition="$(codecov) == ''">portable</DebugType> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Azure.KeyVault.Core" Version="3.0.1" /> | ||
<PackageReference Include="Microsoft.Azure.Storage.Blob" Version="10.0.2" /> | ||
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118"> | ||
<PrivateAssets>All</PrivateAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\ImageSharp.Web\ImageSharp.Web.csproj" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<CodeAnalysisRuleSet>..\..\standards\SixLabors.ruleset</CodeAnalysisRuleSet> | ||
<RootNamespace>SixLabors.ImageSharp.Web</RootNamespace> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<AdditionalFiles Include="..\..\standards\stylecop.json" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
</PropertyGroup> | ||
</Project> |
Oops, something went wrong.