Skip to content

Commit a4af6d0

Browse files
committed
Fixed package authorship, nuget ID/build
1 parent 6b66b12 commit a4af6d0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The goal of ExCSS is to make it easy to read and parse stylesheets into a friend
88
Version 4 is a move forward in framework support. The new version targets the latest version of .NET; Core 3.1 and 4.8. The API surface is the same as version 3, but will target the future-facing, unified .NET version including the upcoming .NET 5. Version 3 was rewritten from the ground up; version 4 makes full use of those enhancements plus new additions under development! This is the most advanced ExCSS parser to date. The parser has been rebuild to have better white spaces support as well as the ability to handle unknown rule sets in the ever-changing web and CSS landscape.
99

1010
# NuGet
11-
[![NuGet Status](https://img.shields.io/nuget/v/Anateus.ExCSS.svg)](https://www.nuget.org/packages/Anateus.ExCSS/)
11+
[![NuGet Status](https://img.shields.io/nuget/v/excss.svg)](https://www.nuget.org/packages/excss/)
1212

1313
# Lexing and Parsing - How it all Works
1414
ExCSS uses a Lexer and a Parser based on a CSS3-specific grammar. The Lexer and Parser read CSS text and parse each

src/ExCSS/ExCSS.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<LangVersion>9.0</LangVersion>
55
<TargetFrameworks>net8.0;net7.0;net6.0;netcoreapp3.1;net48;netstandard2.1;netstandard2.0</TargetFrameworks>
66
<AssemblyName>ExCSS</AssemblyName>
7-
<PackageId>Anateus.ExCSS</PackageId>
7+
<PackageId>ExCSS</PackageId>
88
<Title>ExCSS .NET Stylesheet Parser</Title>
9-
<Authors>Anateus,Tyler Brinks</Authors>
9+
<Authors>Tyler Brinks</Authors>
1010
<Description>
1111
ExCSS is a CSS 2.1 and CSS 3 parser for .NET.
1212
ExCSS makes it easy to read and parse stylesheets into a friendly object model with full LINQ support.

0 commit comments

Comments
 (0)