From d75fecbca67ee5df960da5608fbc3e242a16acb6 Mon Sep 17 00:00:00 2001 From: Szabolcs Deme Date: Thu, 18 Jan 2024 01:42:26 +0100 Subject: [PATCH] Adding items to solution --- .editorconfig | 45 +++++++++++++++++++++++++++ Lombiq.Walkthroughs.Test.UI/Readme.md | 2 ++ Lombiq.Walkthroughs.sln | 28 +++++++++++++++++ Readme.md | 4 +++ 4 files changed, 79 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..574b0e9 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,45 @@ +# WARNING: Only edit this file in the Lombiq .NET Analyzers repository's "Lombiq.Analyzers" folder. A copy of this file +# anywhere else will be overwritten. + +# All files +[*] + +# Basics +charset = utf-8 +guidelines = 120 1px solid a0ffc000, 150 1px solid 80ff0000 + +# Indentation and spacing +indent_size = 4 +indent_style = space +trim_trailing_whitespace = true + +# New line preferences +end_of_line = crlf +insert_final_newline = true +tab_width = 4 + +# Various config files +[*.{config,csproj,json,props,targets}] + +indent_size = 2 + +# Markdown files +[*.md] + +trim_trailing_whitespace = false + +# JavaScript files +[*.js] + +# Placeholder, no unique rules for JS files at the moment. + + +# SCSS files +[*.scss] + +# Placeholder, no unique rules for SCSS files at the moment. + +# PowerShell files +[*.ps1] + +# Placeholder, no unique rules for PS files at the moment. diff --git a/Lombiq.Walkthroughs.Test.UI/Readme.md b/Lombiq.Walkthroughs.Test.UI/Readme.md index c689fa2..4e9d102 100644 --- a/Lombiq.Walkthroughs.Test.UI/Readme.md +++ b/Lombiq.Walkthroughs.Test.UI/Readme.md @@ -1,5 +1,7 @@ # Lombiq Walkthroughs for Orchard Core - UI Test Extensions +[![Lombiq.Walkthroughs NuGet](https://img.shields.io/nuget/v/Lombiq.Walkthroughs.Tests.UI)](https://www.nuget.org/packages/Lombiq.Walkthroughs.Tests.UI/) + ## About Extension methods that test various features in Lombiq Walkthroughs for Orchard Core, with the help of [Lombiq UI Testing Toolbox for Orchard Core](https://github.com/Lombiq/UI-Testing-Toolbox). diff --git a/Lombiq.Walkthroughs.sln b/Lombiq.Walkthroughs.sln index 65f86cd..6a715e6 100644 --- a/Lombiq.Walkthroughs.sln +++ b/Lombiq.Walkthroughs.sln @@ -3,7 +3,35 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.8.34227.203 MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lombiq.Walkthroughs", "Lombiq.Walkthroughs\Lombiq.Walkthroughs.csproj", "{655C35E9-CF87-49FF-9510-0FB5F9D6625E}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lombiq.Walkthroughs.Tests.UI", "Lombiq.Walkthroughs.Test.UI\Lombiq.Walkthroughs.Tests.UI.csproj", "{3A89ACC2-86EE-4F04-B674-0514E0FDB066}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{D483B00D-4262-49CA-B22D-3655A7BF2AF8}" + ProjectSection(SolutionItems) = preProject + .gitignore = .gitignore + .github\workflows\create-jira-issues-for-community-activities.yml = .github\workflows\create-jira-issues-for-community-activities.yml + License.md = License.md + .github\workflows\publish-nuget.yml = .github\workflows\publish-nuget.yml + Readme.md = Readme.md + .github\workflows\validate-pull-request.yml = .github\workflows\validate-pull-request.yml + EndProjectSection +EndProject Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {655C35E9-CF87-49FF-9510-0FB5F9D6625E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {655C35E9-CF87-49FF-9510-0FB5F9D6625E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {655C35E9-CF87-49FF-9510-0FB5F9D6625E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {655C35E9-CF87-49FF-9510-0FB5F9D6625E}.Release|Any CPU.Build.0 = Release|Any CPU + {3A89ACC2-86EE-4F04-B674-0514E0FDB066}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3A89ACC2-86EE-4F04-B674-0514E0FDB066}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3A89ACC2-86EE-4F04-B674-0514E0FDB066}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3A89ACC2-86EE-4F04-B674-0514E0FDB066}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection diff --git a/Readme.md b/Readme.md index 12da8ca..a06b70f 100644 --- a/Readme.md +++ b/Readme.md @@ -1,5 +1,9 @@ + # Lombiq Walkthroughs for Orchard Core +[![Lombiq.Walkthroughs NuGet](https://img.shields.io/nuget/v/Lombiq.Walkthroughs)](https://www.nuget.org/packages/Lombiq.Walkthroughs/) + + ## About Orchard Core Walkthroughs module for teaching Orchard Core fundamentals by guiding through the user in step by step guides.