CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
HelpUrlBuilder.cs
Go to the documentation of this file.
1namespace Csla.Analyzers
2{
3 internal static class HelpUrlBuilder
4 {
5 internal static string Build(string identifier, string analyzerName) =>
6 $"https://github.com/MarimerLLC/csla/tree/main/docs/analyzers/{identifier}-{analyzerName}.md";
7 }
8}