Skip to content

Commit

Permalink
See if this likes it better
Browse files Browse the repository at this point in the history
  • Loading branch information
jordimontana82 committed Feb 9, 2024
1 parent 3cafc03 commit 54cac00
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace FakeXrmEasy.Core.CommercialLicense.Exceptions
public class ConsiderUpgradingPlanException: Exception
{
private const string _url =
"https://dynamicsvalue.github.io/fake-xrm-easy-docs/licensing/commercial-license/troubleshooting/consider-upgrading-exception/";
CommercialLicenseTroubleshootingLinks.BaseUrl + "/consider-upgrading-exception/";

/// <summary>
/// Default constructor
Expand Down
12 changes: 12 additions & 0 deletions src/FakeXrmEasy.Core/DocsLinks.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
namespace FakeXrmEasy
{
internal static class DocLinks
{
internal const string BaseUrl = "https://dynamicsvalue.github.io/fake-xrm-easy-docs";
}

internal static class CommercialLicenseTroubleshootingLinks
{
internal const string BaseUrl = DocLinks.BaseUrl + "/licensing/commercial-license/troubleshooting";
}
}

0 comments on commit 54cac00

Please sign in to comment.