Skip to content

Commit 02ba60b

Browse files
committed
Update version to 2.1.0.17. Update references of .NET Standard 2.1 in documentation to .NET 6.0.
1 parent a85bbb2 commit 02ba60b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

JeffFerguson.Gepsio/JeffFerguson.Gepsio.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,27 @@
44
<TargetFramework>net6.0</TargetFramework>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<PackageId>Gepsio</PackageId>
7-
<Version>2.1.0.16</Version>
7+
<Version>2.1.0.17</Version>
88
<Authors>Jeff Ferguson</Authors>
99
<Company />
1010
<Product>Gepsio</Product>
11-
<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>
12-
<PackageReleaseNotes>See https://github.com/JeffFerguson/gepsio/releases/tag/v2.1.0.16 for a complete list of changes for this release.</PackageReleaseNotes>
11+
<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>
12+
<PackageReleaseNotes>See https://github.com/JeffFerguson/gepsio/releases/tag/v2.1.0.17 for a complete list of changes for this release.</PackageReleaseNotes>
1313
<PackageTags>xbrl</PackageTags>
1414
<PackageLicenseUrl></PackageLicenseUrl>
1515
<PackageProjectUrl />
1616
<RepositoryUrl>https://github.com/JeffFerguson/gepsio/</RepositoryUrl>
17-
<AssemblyVersion>2.1.0.16</AssemblyVersion>
18-
<FileVersion>2.1.0.16</FileVersion>
17+
<AssemblyVersion>2.1.0.17</AssemblyVersion>
18+
<FileVersion>2.1.0.17</FileVersion>
1919
<PackageLicenseFile>license.txt</PackageLicenseFile>
2020
</PropertyGroup>
2121

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

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

3030
<ItemGroup>

JeffFerguson.Gepsio/Xml/Implementations/SystemXmlLinq/Document.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
namespace JeffFerguson.Gepsio.Xml.Implementation.SystemXmlLinq
1010
{
1111
/// <summary>
12-
/// An implementation of IDocument that uses the System.Xml.Linq classes from .NET Standard 2.1.
12+
/// An implementation of IDocument that uses the System.Xml.Linq classes from .NET 6.
1313
/// </summary>
1414
internal class Document : IDocument
1515
{

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# What is Gepsio?
22
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.
33

4-
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.
4+
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.
55

66
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 commit comments

Comments
 (0)