Skip to content

Commit

Permalink
Merge pull request #290 from SixLabors/js/taghelper
Browse files Browse the repository at this point in the history
Introduce Taghelper
  • Loading branch information
JimBobSquarePants authored Mar 25, 2023
2 parents 35e1ae2 + e057f93 commit cc8cc49
Show file tree
Hide file tree
Showing 32 changed files with 3,219 additions and 1,192 deletions.
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

0 comments on commit cc8cc49

Please sign in to comment.