From 227cc96366cae84d39e4be56546ca35e1e77e09f Mon Sep 17 00:00:00 2001 From: Lars Richter Date: Thu, 6 Apr 2017 10:32:53 +0200 Subject: [PATCH] Updated markdown to use syntax highlighting. --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index ed1beb7..78d869c 100644 --- a/README.md +++ b/README.md @@ -67,15 +67,15 @@ Note: These tests are included in [DocumentationTest.cs](src/AutoSitecoreUnitTes * Sitecore.Logging.dll version 8.2 4. Create an AutoSitecore attribute in your test project. Of course, you don't have to name it AutoSitecoreAttribute, but doing so will make it consistent with the examples. - ```csharp - public class AutoSitecoreAttribute : AutoDataAttriubte - { - public AutoSitecoreAttribute() - { - Fixture.Customize(new AutoSitecoreCustomization()); - } - } - ``` +```csharp +public class AutoSitecoreAttribute : AutoDataAttriubte +{ + public AutoSitecoreAttribute() + { + Fixture.Customize(new AutoSitecoreCustomization()); + } +} +``` See [AutoSitecoreAttribute.cs](src/AutoSitecoreUnitTest/AutoSitecoreAttribute.cs) in the AutoSitecoreUnitTest project. This is not included in the main project so as to avoid taking on a dependency on the XUnit for NUnit attribute projects, so that users can select their preference. ## Can I further customize this?