Skip to content

Commit

Permalink
Add trailing "#" to swrl and swrlb namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco De Salvo committed Oct 4, 2024
1 parent f094fc4 commit 78a4b96
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion RDFSharp.Test/RDFSharp.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<AssemblyTitle>RDFSharp.Test</AssemblyTitle>
<AssemblyName>RDFSharp.Test</AssemblyName>
<AssemblyVersion>$(Version)</AssemblyVersion>
<Version>3.12.0</Version>
<Version>3.12.1</Version>
<Authors>Marco De Salvo</Authors>
<Copyright>Marco De Salvo</Copyright>
<TargetFramework>net8.0</TargetFramework>
Expand Down
18 changes: 8 additions & 10 deletions RDFSharp/Model/Vocabularies/SWRL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ public static class SWRL
public static readonly string PREFIX = "swrl";

/// <summary>
/// https://www.w3.org/2003/11/swrl
/// https://www.w3.org/2003/11/swrl#
/// </summary>
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#";

/// <summary>
/// https://www.w3.org/2003/11/swrl
/// https://www.w3.org/2003/11/swrl#
/// </summary>
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
Expand All @@ -50,24 +50,22 @@ public static class SWRL
/// </summary>
public static class SWRLB
{

#region Properties
/// <summary>
/// swrlb
/// </summary>
public static readonly string PREFIX = "swrlb";

/// <summary>
/// https://www.w3.org/2003/11/swrlb
/// https://www.w3.org/2003/11/swrlb#
/// </summary>
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#";

/// <summary>
/// https://www.w3.org/2003/11/swrlb
/// https://www.w3.org/2003/11/swrlb#
/// </summary>
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
}
Expand Down
2 changes: 1 addition & 1 deletion RDFSharp/RDFSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<AssemblyTitle>RDFSharp</AssemblyTitle>
<AssemblyName>RDFSharp</AssemblyName>
<AssemblyVersion>$(Version)</AssemblyVersion>
<Version>3.12.0</Version>
<Version>3.12.1</Version>
<Authors>Marco De Salvo</Authors>
<Copyright>Marco De Salvo</Copyright>
<Description>Lightweight and friendly .NET library for realizing Semantic Web applications</Description>
Expand Down

0 comments on commit 78a4b96

Please sign in to comment.