Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ${{ matrix.os }}
env:
SLN_DIR: MarkdownLinkCheckLogParser
SLN_FILENAME: MarkdownLinkCheckLogParser.sln
SLN_FILENAME: MarkdownLinkCheckLogParser.slnx
TEST_RESULTS_ARTIFACT_NAME: test-results
CODE_COVERAGE_ARTIFACT_NAME: code-coverage-report
steps:
Expand Down
39 changes: 0 additions & 39 deletions MarkdownLinkCheckLogParser/MarkdownLinkCheckLogParser.sln

This file was deleted.

8 changes: 8 additions & 0 deletions MarkdownLinkCheckLogParser/MarkdownLinkCheckLogParser.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Solution>
<Folder Name="/src/">
<Project Path="src/MarkdownLinkCheckLogParserCli/MarkdownLinkCheckLogParserCli.csproj" />
</Folder>
<Folder Name="/tests/">
<Project Path="tests/MarkdownLinkCheckLogParserCli.Tests/MarkdownLinkCheckLogParserCli.Tests.csproj" />
</Folder>
</Solution>
8 changes: 4 additions & 4 deletions docs/dev-notes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@

### Building with Visual Studio

1) Clone the repo and open the **MarkdownLinkCheckLogParser.sln** solution file at `/MarkdownLinkCheckLogParser`.
1) Clone the repo and open the **MarkdownLinkCheckLogParser.slnx** solution file at `/MarkdownLinkCheckLogParser`.
2) Press build on Visual Studio.

### Building with dotnet CLI

1) Clone the repo and browse to the solution's directory at `/MarkdownLinkCheckLogParser` using your favorite shell.
2) Run **`dotnet build MarkdownLinkCheckLogParser.sln`** to build the source of the CLI app.
2) Run **`dotnet build MarkdownLinkCheckLogParser.slnx`** to build the source of the CLI app.

## Running MarkdownLinkCheckLogParser solution tests

### Run tests with Visual Studio

1) Clone the repo and open the **MarkdownLinkCheckLogParser.sln** solution file at `/MarkdownLinkCheckLogParser`.
1) Clone the repo and open the **MarkdownLinkCheckLogParser.slnx** solution file at `/MarkdownLinkCheckLogParser`.
2) Go to the test explorer in Visual Studio and run tests.

**Note:** [Remote testing](https://docs.microsoft.com/en-us/visualstudio/test/remote-testing?view=vs-2022) with is configured on the solution which enables you to run the tests locally on Linux or on Windows. You can view the configuration file at [testenvironments.json](/MarkdownLinkCheckLogParser/testenvironments.json). To run the tests on Linux you need to have at least `Visual Studio 2022` and:
Expand All @@ -43,7 +43,7 @@
### Run tests with dotnet CLI

1) Clone the repo and browse to the solution's directory at `/MarkdownLinkCheckLogParser` using your favorite shell.
2) Run **`dotnet test MarkdownLinkCheckLogParser.sln`** to run tests.
2) Run **`dotnet test MarkdownLinkCheckLogParser.slnx`** to run tests.

## Building and running the Docker container action

Expand Down
Loading