Skip to content

Commit 7cdb712

Browse files
authored
Split DocsPortingTool into two separate tools (#107)
* Add new project PortToTripleSlash * Remove old project * Add code to PortToTripleSlash project, make sure it builds and tests pass * Add code to PortToDocs project, make sure it builds and tests pass * Remove CLI arguments not required by PortToDocs. * Remove CLI arguments not required by PortToTripleSlash. * Update readme files * Update help messages * Update yml to process the two solutions separately * Use 6.0 instead of 7.0 * Move projects to suggested folder structure * Update yml workflow path for solutions to build * Remove Properties folder and contents. * Run dotnet format on PortToDocs * Run dotnet format on PortToTripleSlash * Use folder tree structure discussed in comments, update install-as-tool.ps1 (use only one for both), update documentation. * Fix paths of tests ProjectReference Co-authored-by: carlossanlop <[email protected]>
1 parent 4f547c5 commit 7cdb712

File tree

128 files changed

+3226
-809
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+3226
-809
lines changed

.github/workflows/dotnet.yml

+12-6
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,15 @@ jobs:
1515
- uses: actions/checkout@v2
1616
- name: Setup .NET
1717
uses: actions/setup-dotnet@v1
18-
- name: Restore dependencies
19-
run: dotnet restore
20-
- name: Build
21-
run: dotnet build --no-restore
22-
- name: Test
23-
run: dotnet test --no-build --verbosity normal
18+
- name: Restore dependencies of PortToTripleSlash
19+
run: dotnet restore src/PortToTripleSlash/PortToTripleSlash.sln
20+
- name: Build PortToTripleSlash
21+
run: dotnet build --no-restore src/PortToTripleSlash/PortToTripleSlash.sln
22+
- name: Test PortToTripleSlash
23+
run: dotnet test --no-build --verbosity normal src/PortToTripleSlash/PortToTripleSlash.sln
24+
- name: Restore dependencies of PortToDocs
25+
run: dotnet restore src/PortToDocs/PortToDocs.sln
26+
- name: Build PortToDocs
27+
run: dotnet build --no-restore src/PortToDocs/PortToDocs.sln
28+
- name: Test PortToDocs
29+
run: dotnet test --no-build --verbosity normal src/PortToDocs/PortToDocs.sln

BackportInstructions.md

-179
This file was deleted.

Program/DocsPortingTool.cs

-31
This file was deleted.

Program/Properties/launchSettings.json

-26
This file was deleted.

0 commit comments

Comments
 (0)