From 78a4b96ca6c7909ed42c940726f1c96d64c2f8d8 Mon Sep 17 00:00:00 2001 From: Marco De Salvo Date: Fri, 4 Oct 2024 16:02:31 +0200 Subject: [PATCH] Add trailing "#" to swrl and swrlb namespaces --- RDFSharp.Test/RDFSharp.Test.csproj | 2 +- RDFSharp/Model/Vocabularies/SWRL.cs | 18 ++++++++---------- RDFSharp/RDFSharp.csproj | 2 +- 3 files changed, 10 insertions(+), 12 deletions(-) diff --git a/RDFSharp.Test/RDFSharp.Test.csproj b/RDFSharp.Test/RDFSharp.Test.csproj index 9b9f2a09..16f3cc10 100644 --- a/RDFSharp.Test/RDFSharp.Test.csproj +++ b/RDFSharp.Test/RDFSharp.Test.csproj @@ -3,7 +3,7 @@ RDFSharp.Test RDFSharp.Test $(Version) - 3.12.0 + 3.12.1 Marco De Salvo Marco De Salvo net8.0 diff --git a/RDFSharp/Model/Vocabularies/SWRL.cs b/RDFSharp/Model/Vocabularies/SWRL.cs index 12d9ed44..86c6ae5e 100644 --- a/RDFSharp/Model/Vocabularies/SWRL.cs +++ b/RDFSharp/Model/Vocabularies/SWRL.cs @@ -34,14 +34,14 @@ public static class SWRL public static readonly string PREFIX = "swrl"; /// - /// https://www.w3.org/2003/11/swrl + /// https://www.w3.org/2003/11/swrl# /// - public static readonly string BASE_URI = "https://www.w3.org/2003/11/swrl"; + public static readonly string BASE_URI = "https://www.w3.org/2003/11/swrl#"; /// - /// https://www.w3.org/2003/11/swrl + /// https://www.w3.org/2003/11/swrl# /// - public static readonly string DEREFERENCE_URI = "https://www.w3.org/2003/11/swrl"; + public static readonly string DEREFERENCE_URI = "https://www.w3.org/2003/11/swrl#"; #endregion #region Extended Properties @@ -50,7 +50,6 @@ public static class SWRL /// public static class SWRLB { - #region Properties /// /// swrlb @@ -58,16 +57,15 @@ public static class SWRLB public static readonly string PREFIX = "swrlb"; /// - /// https://www.w3.org/2003/11/swrlb + /// https://www.w3.org/2003/11/swrlb# /// - public static readonly string BASE_URI = "https://www.w3.org/2003/11/swrlb"; + public static readonly string BASE_URI = "https://www.w3.org/2003/11/swrlb#"; /// - /// https://www.w3.org/2003/11/swrlb + /// https://www.w3.org/2003/11/swrlb# /// - public static readonly string DEREFERENCE_URI = "https://www.w3.org/2003/11/swrlb"; + public static readonly string DEREFERENCE_URI = "https://www.w3.org/2003/11/swrlb#"; #endregion - } #endregion } diff --git a/RDFSharp/RDFSharp.csproj b/RDFSharp/RDFSharp.csproj index d291cd9d..f4d2cbcc 100644 --- a/RDFSharp/RDFSharp.csproj +++ b/RDFSharp/RDFSharp.csproj @@ -3,7 +3,7 @@ RDFSharp RDFSharp $(Version) - 3.12.0 + 3.12.1 Marco De Salvo Marco De Salvo Lightweight and friendly .NET library for realizing Semantic Web applications