-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove all the obsolete to get 008 to compile. * DataType config and config object serialization * tidy up extension methods. * Clean up mapper code. * Attempt and Change model tidy * Serializers * Tracking cleaning. * Nullable all the things. * NoNodes path updates * Code cleanup. * Added Workspace use so context doesn't break builds. * Fix sort test. * Legacy Check * Tidy legacy dialog * v13 Property compatability * Fix #593 - for v14 release. * beta-001
- Loading branch information
Showing
267 changed files
with
17,479 additions
and
14,330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
using Umbraco.Cms.Core.Composing; | ||
using Umbraco.Cms.Core.DependencyInjection; | ||
|
||
namespace uSync.AutoTemplates | ||
namespace uSync.AutoTemplates; | ||
|
||
public class AutoTemplateComposer : IComposer | ||
{ | ||
public class AutoTemplateComposer : IComposer | ||
public void Compose(IUmbracoBuilder builder) | ||
{ | ||
public void Compose(IUmbracoBuilder builder) | ||
{ | ||
builder.AdduSyncAutoTemplates(); | ||
} | ||
builder.AdduSyncAutoTemplates(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
namespace uSync.AutoTemplates | ||
namespace uSync.AutoTemplates; | ||
|
||
public class AutoTemplates | ||
{ | ||
public class AutoTemplates | ||
{ | ||
/// <summary> | ||
/// the regex to fine the layout file in a .cshtml file | ||
/// </summary> | ||
public const string LayoutRegEx = "Layout\\s*=\\s*(\"*[A-z.]+\"*)"; | ||
/// <summary> | ||
/// the regex to fine the layout file in a .cshtml file | ||
/// </summary> | ||
public const string LayoutRegEx = "Layout\\s*=\\s*(\"*[A-z.]+\"*)"; | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.