mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 17:25:32 +00:00
38 lines
1.5 KiB
XML
38 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<EnablePreviewFeatures>True</EnablePreviewFeatures>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<!-- exclude all Content items from being watched -->
|
|
<Content Update="wwwroot/css/site.css" Watch="false" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Watch Include="**\*.js" Exclude="node_modules\**\*;**\*.js.map;obj\**\*;bin\**\*" />
|
|
<Watch Include="**\*.css" Exclude="node_modules\**\*;**\*.js.map;obj\**\*;bin\**\*" />
|
|
<Watch Include="**\*.cs" Exclude="node_modules\**\*;**\*.js.map;obj\**\*;bin\**\*" />
|
|
<Watch Include="**\*.cshtml" Exclude="node_modules\**\*;**\*.js.map;obj\**\*;bin\**\*" />
|
|
<Watch Include="**\*.csproj" Exclude="node_modules\**\*;**\*.js.map;obj\**\*;bin\**\*" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<UpToDateCheckBuilt Include="postcss.config.js" Set="Css" />
|
|
<UpToDateCheckBuilt Include="tailwind.config.js" Set="Css" />
|
|
</ItemGroup>
|
|
<Target Name="Tailwind" BeforeTargets="Build">
|
|
<Exec Command="npm run css:build" />
|
|
</Target>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.FeatureManagement.AspNetCore" Version="2.5.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\HaXMLReaderV6\HaXMLReaderV6.csproj" />
|
|
<ProjectReference Include="..\HaDocumentV6\HaDocumentV6.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|