Skip to content

Commit

Permalink
Update version to 2.1.0.17. Update references of .NET Standard 2.1 in…
Browse files Browse the repository at this point in the history
… documentation to .NET 6.0.
  • Loading branch information
JeffFerguson committed Jun 5, 2022
1 parent a85bbb2 commit 02ba60b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions JeffFerguson.Gepsio/JeffFerguson.Gepsio.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@
<TargetFramework>net6.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Gepsio</PackageId>
<Version>2.1.0.16</Version>
<Version>2.1.0.17</Version>
<Authors>Jeff Ferguson</Authors>
<Company />
<Product>Gepsio</Product>
<Description>Gepsio is a document object model for XBRL documents, built with .NET Standard 2.1. Load your XBRL document with the XbrlDocument class and work with your XBRL document exposed as a set of .NET Standard classes with a variety of properties and methods. Loaded XBRL documents are automatically validated against the information against the XBRL specification, and exceptions are thrown when invalid XBRL documents are loaded. The Gepsio code base is unit tested using the XBRL-CONF-2014-12-10 conformance test suite designed by the XBRL organization.</Description>
<PackageReleaseNotes>See https://github.com/JeffFerguson/gepsio/releases/tag/v2.1.0.16 for a complete list of changes for this release.</PackageReleaseNotes>
<Description>Gepsio is a document object model for XBRL documents, built with .NET 6. Load your XBRL document with the XbrlDocument class and work with your XBRL document exposed as a set of .NET 6 classes with a variety of properties and methods. Loaded XBRL documents are automatically validated against the information against the XBRL specification, and exceptions are thrown when invalid XBRL documents are loaded. The Gepsio code base is unit tested using the XBRL-CONF-2014-12-10 conformance test suite designed by the XBRL organization.</Description>
<PackageReleaseNotes>See https://github.com/JeffFerguson/gepsio/releases/tag/v2.1.0.17 for a complete list of changes for this release.</PackageReleaseNotes>
<PackageTags>xbrl</PackageTags>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageProjectUrl />
<RepositoryUrl>https://github.com/JeffFerguson/gepsio/</RepositoryUrl>
<AssemblyVersion>2.1.0.16</AssemblyVersion>
<FileVersion>2.1.0.16</FileVersion>
<AssemblyVersion>2.1.0.17</AssemblyVersion>
<FileVersion>2.1.0.17</FileVersion>
<PackageLicenseFile>license.txt</PackageLicenseFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard2.0\JeffFerguson.Gepsio.xml</DocumentationFile>
<DocumentationFile>bin\Debug\net6.0\JeffFerguson.Gepsio.xml</DocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\JeffFerguson.Gepsio.xml</DocumentationFile>
<DocumentationFile>bin\Release\net6.0\JeffFerguson.Gepsio.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
namespace JeffFerguson.Gepsio.Xml.Implementation.SystemXmlLinq
{
/// <summary>
/// An implementation of IDocument that uses the System.Xml.Linq classes from .NET Standard 2.1.
/// An implementation of IDocument that uses the System.Xml.Linq classes from .NET 6.
/// </summary>
internal class Document : IDocument
{
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# What is Gepsio?
Gepsio is a document object model for [XBRL](https://www.xbrl.org/) documents. The object model is built using .NET 6 and will work with any software development platform that can consume .NET 6 assemblies.

Load your XBRL document with the `XbrlDocument` class and work with your XBRL document exposed as a set of .NET Standard classes with a variety of properties and methods. Loaded XBRL documents are automatically validated against the information against the XBRL specification, and exceptions are thrown when invalid XBRL documents are loaded. The Gepsio code base is unit tested using the [XBRL Conformance Suite](http://www.xbrl.org/2005/xbrl-conf-cr1-2005-04-25.htm) designed by the XBRL organization.
Load your XBRL document with the `XbrlDocument` class and work with your XBRL document exposed as a set of .NET 6 classes with a variety of properties and methods. Loaded XBRL documents are automatically validated against the information against the XBRL specification, and exceptions are thrown when invalid XBRL documents are loaded. The Gepsio code base is unit tested using the [XBRL Conformance Suite](https://specifications.xbrl.org/release-history-base-spec-conformance-suite.html) designed by the XBRL organization.

The [Wiki](https://github.com/JeffFerguson/gepsio/wiki) includes a section called "Working with Gepsio" that describes how to use Gepsio to work with XBRL document instances.

0 comments on commit 02ba60b

Please sign in to comment.