Skip to content

Commit 350d6b6

Browse files
authored
Use dirs.proj (#12)
* Use dirs.proj * Update appveyor.yml * Update global.json to use Microsoft.Build.Traversal 1.0.22 * Add files to solution
1 parent ed2e2ac commit 350d6b6

File tree

5 files changed

+18
-1
lines changed

5 files changed

+18
-1
lines changed

Directory.Build.rsp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/Restore
2+
/ConsoleLoggerParameters:Verbosity=Minimal;Summary
3+
/MaxCPUCount
4+
/NodeReuse:false

MSBuildSdks.sln

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Build.Traversal",
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{DC479DC1-DD8C-4DBA-AA37-FC3D39F24266}"
99
ProjectSection(SolutionItems) = preProject
10+
appveyor.yml = appveyor.yml
1011
Directory.Build.props = Directory.Build.props
12+
Directory.Build.rsp = Directory.Build.rsp
1113
Directory.Build.targets = Directory.Build.targets
14+
global.json = global.json
1215
NuGet.config = NuGet.config
1316
version.json = version.json
1417
EndProjectSection

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build_script:
1010
- cmd: >-
1111
IF /I "%APPVEYOR_REPO_TAG%" EQU "TRUE" SET Configuration=Release
1212
13-
MSBuild MSBuildSdks.sln /Restore /NodeReuse:false /MaxCpuCount /ConsoleLoggerParameters:Verbosity=Minimal /BinaryLogger /Logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
13+
MSBuild dirs.proj /BinaryLogger /Logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
1414
artifacts:
1515
- path: msbuild.binlog
1616
name: logs

dirs.proj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<Project Sdk="Microsoft.Build.Traversal">
2+
<ItemGroup>
3+
<ProjectReference Include="src\**\*.*proj" />
4+
</ItemGroup>
5+
</Project>

global.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"msbuild-sdks": {
3+
"Microsoft.Build.Traversal": "1.0.22"
4+
}
5+
}

0 commit comments

Comments
 (0)