Skip to content

Commit cc8cc49

Browse files
Merge pull request #290 from SixLabors/js/taghelper
Introduce Taghelper
2 parents 35e1ae2 + e057f93 commit cc8cc49

32 files changed

+3219
-1192
lines changed

SixLabors.ImageSharp.Web.props

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project>
3+
4+
<!--Add common namespaces to implicit global usings if enabled.-->
5+
<ItemGroup Condition="'$(ImplicitUsings)'=='enable' OR '$(ImplicitUsings)'=='true'">
6+
<Using Include="SixLabors.ImageSharp" />
7+
<Using Include="SixLabors.ImageSharp.Processing" />
8+
<Using Include="SixLabors.ImageSharp.Web" />
9+
</ItemGroup>
10+
11+
</Project>

samples/ImageSharp.Web.Sample/ImageSharp.Web.Sample.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,15 @@
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<LangVersion>10</LangVersion>
58
</PropertyGroup>
69

710
<ItemGroup>
811
<ProjectReference Include="..\..\src\ImageSharp.Web\ImageSharp.Web.csproj" />
912
</ItemGroup>
13+
14+
<Import Project="..\..\SixLabors.ImageSharp.Web.props" />
15+
1016
</Project>

0 commit comments

Comments
 (0)