-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHtmlMinification.csproj
More file actions
34 lines (33 loc) · 1.84 KB
/
HtmlMinification.csproj
File metadata and controls
34 lines (33 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>HtmlMinification</Title>
<Authors>Foad Abdollahi</Authors>
<Description>HTML minification middleware is a process of removing unnecessary or redundant data from HTML without affecting how the resource is processed by the browser. </Description>
<PackageProjectUrl>https://github.com/foadabdollahi/HtmlMinification</PackageProjectUrl>
<RepositoryUrl>https://github.com/foadabdollahi/HtmlMinification</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>HtmlMinification,whiteSpace,whiteSpaceRemover</PackageTags>
<PackageId>HtmlMinification</PackageId>
<PackageReleaseNotes>HTML minification middleware is a process of removing unnecessary or redundant data from HTML without affecting how the resource is processed by the browser. This can include removing code comments and formatting, removing unused code, using shorter variable and function names, and so on. Minifying HTML can help reduce the size of web pages, resulting in faster page load times and improved user experience.</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<FileVersion></FileVersion>
<AssemblyVersion>1.0.0.2</AssemblyVersion>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>