Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
bbd77bf
Add taghelper
JimBobSquarePants Oct 5, 2022
a3b4669
Merge branch 'main' into js/taghelper
JimBobSquarePants Oct 5, 2022
1894867
Finish translating sample
JimBobSquarePants Oct 23, 2022
c6d9ba5
Rename auth utilities
JimBobSquarePants Oct 23, 2022
bb4856b
Make Format and Resampler commands expandable
JimBobSquarePants Oct 23, 2022
2847e1a
Begin adding taghelper tests
JimBobSquarePants Oct 23, 2022
4aed81b
Add additional tests
JimBobSquarePants Oct 23, 2022
8fb6c96
Verbose is best
JimBobSquarePants Oct 23, 2022
08e3d9d
Use ReadOnlySpan<char>
JimBobSquarePants Oct 27, 2022
efb2bae
Update src/ImageSharp.Web/Format.cs
JimBobSquarePants Oct 28, 2022
36c0e08
Update src/ImageSharp.Web/Format.cs
JimBobSquarePants Oct 28, 2022
84e9ab6
Update src/ImageSharp.Web/ImageSharpTagHelper.cs
JimBobSquarePants Oct 28, 2022
dff9d9d
Move/rename helper and use explicit width/height commands
JimBobSquarePants Oct 28, 2022
b393055
Add implicit usings
JimBobSquarePants Oct 28, 2022
bec9e83
Revert experimental changes.
JimBobSquarePants Oct 28, 2022
6f7b792
Remove experimental code.
JimBobSquarePants Oct 28, 2022
9415d95
Update src/ImageSharp.Web/Format.cs
JimBobSquarePants Oct 28, 2022
ecf329e
Remove bad setup call from samples
JimBobSquarePants Oct 28, 2022
424102d
Use implicit usings in sample
JimBobSquarePants Oct 28, 2022
f96daf5
Allow explicit hmac includes
JimBobSquarePants Oct 28, 2022
b86cab1
Add test for HMAC attribute
JimBobSquarePants Oct 28, 2022
569cc2b
Parse width/height HTML attributes as string
JimBobSquarePants Nov 6, 2022
32e400b
Merge branch 'main' into js/taghelper
JimBobSquarePants Jan 15, 2023
3334609
Disallow data URIs
JimBobSquarePants Feb 8, 2023
30219ee
Merge branch 'main' into js/taghelper
JimBobSquarePants Feb 20, 2023
3d4e412
Update shared-infrastructure
JimBobSquarePants Feb 20, 2023
0ebd51a
Fix build
JimBobSquarePants Feb 20, 2023
49de681
Merge branch 'main' into js/taghelper
JimBobSquarePants Mar 5, 2023
6f691a6
Update ImageTagHelper.cs
JimBobSquarePants Mar 5, 2023
a9b1cd3
Update HMACUtilities.cs
JimBobSquarePants Mar 5, 2023
05fd0e5
Update CaseHandlingUriBuilder.cs
JimBobSquarePants Mar 5, 2023
5c76bfa
Merge branch 'main' into js/taghelper
JimBobSquarePants Mar 6, 2023
884f76e
Split out HMAC helper, remove HMAC from request with no commands
JimBobSquarePants Mar 6, 2023
fe2ea26
Fix null handling and ensure requirement
JimBobSquarePants Mar 6, 2023
68a82b5
Consistant casing
JimBobSquarePants Mar 6, 2023
b270ca0
Merge branch 'main' into js/taghelper
JimBobSquarePants Mar 6, 2023
e057f93
Merge branch 'main' into js/taghelper
JimBobSquarePants Mar 25, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions SixLabors.ImageSharp.Web.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>

<!--Add common namespaces to implicit global usings if enabled.-->
<ItemGroup Condition="'$(ImplicitUsings)'=='enable' OR '$(ImplicitUsings)'=='true'">
<Using Include="SixLabors.ImageSharp" />
<Using Include="SixLabors.ImageSharp.Processing" />
<Using Include="SixLabors.ImageSharp.Web" />
</ItemGroup>

</Project>
6 changes: 6 additions & 0 deletions samples/ImageSharp.Web.Sample/ImageSharp.Web.Sample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>10</LangVersion>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\ImageSharp.Web\ImageSharp.Web.csproj" />
</ItemGroup>

<Import Project="..\..\SixLabors.ImageSharp.Web.props" />

</Project>
Loading