mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 17:25:32 +00:00
21 lines
669 B
XML
21 lines
669 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<UpToDateCheckBuilt Include="wwwroot/css/site.css" Set="Css" />
|
|
<UpToDateCheckBuilt Include="postcss.config.js" Set="Css" />
|
|
<UpToDateCheckBuilt Include="tailwind.config.js" Set="Css" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="LigerShark.WebOptimizer.Core" Version="3.0.357" />
|
|
</ItemGroup>
|
|
<Target Name="Tailwind" BeforeTargets="Build">
|
|
<Exec Command="npm run css:build" />
|
|
</Target>
|
|
|
|
</Project>
|