Skip to content

Commit

Permalink
Adding items to solution
Browse files Browse the repository at this point in the history
  • Loading branch information
DemeSzabolcs committed Jan 18, 2024
1 parent 91ad0e7 commit d75fecb
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 2 additions & 0 deletions Lombiq.Walkthroughs.Test.UI/Readme.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
28 changes: 28 additions & 0 deletions Lombiq.Walkthroughs.sln
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit d75fecb

Please sign in to comment.