Skip to content

Commit 675139f

Browse files
committed
Update README.md
1 parent 5ec93ea commit 675139f

3 files changed

Lines changed: 14 additions & 6 deletions

File tree

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ insert_final_newline = true
1313
[*.props]
1414
indent_size = 2
1515

16+
[*.md]
17+
trim_trailing_whitespace = false
18+
1619
[*.cs]
1720
indent_size = 4
1821

ConvertProjDepToProjRef.sln

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.30709.64
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31710.8
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConvertProjDepToProjRef", "src/ConvertProjDepToProjRef.csproj", "{6F661442-8267-40BA-B984-B48BF1DC38D8}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ConvertProjDepToProjRef", "src\ConvertProjDepToProjRef.csproj", "{6F661442-8267-40BA-B984-B48BF1DC38D8}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{29631BE0-1DDD-4846-A61A-E3E8EC9F7C1B}"
99
ProjectSection(SolutionItems) = preProject
1010
.editorconfig = .editorconfig
11+
Directory.Build.props = Directory.Build.props
12+
Directory.Packages.props = Directory.Packages.props
13+
README.md = README.md
1114
EndProjectSection
1215
EndProject
1316
Global

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
21
# Convert Project Dependencies to MSBuild Project references
32

4-
ConvertProjDepToProjRef is a small tool to convert project dependencies in a Visual Studio solution file (.sln)
5-
into MSBuild project references (ProjectReference) in project files. It will do 95% of the work.
3+
ConvertProjDepToProjRef is a tool to convert project dependencies in a Visual Studio solution file (.sln)
4+
into MSBuild project references (ProjectReference) in project files. It will do 95% of the work.
5+
Project dependencies in an .sln file are an older method to define build
6+
dependencies and are slower because MSBuild must first create meta projects
7+
files.
68

79
## Features
810

0 commit comments

Comments
 (0)