-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathdirs.proj
More file actions
24 lines (21 loc) · 828 Bytes
/
dirs.proj
File metadata and controls
24 lines (21 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.Build.Traversal">
<PropertyGroup>
<SlnGenFolders>true</SlnGenFolders>
</PropertyGroup>
<ItemGroup>
<!-- Build all projects recursively under the "src" folder -->
<ProjectReference Include="src\**\*.*proj" />
</ItemGroup>
<ItemGroup>
<!-- Only pulled in by slngen -->
<SlnGenSolutionItem Include="build\**\*.targets" />
<SlnGenSolutionItem Include="scripts\**\*.*" />
<SlnGenSolutionItem Include="NuGet.config" />
<SlnGenSolutionItem Include="ReleaseNotes.md" />
<SlnGenSolutionItem Include=".editorconfig" />
<SlnGenSolutionItem Include="global.json" />
<SlnGenSolutionItem Include="Directory.Build.props" />
<SlnGenSolutionItem Include="Directory.Build.targets" />
<SlnGenSolutionItem Include="Packages.props" />
</ItemGroup>
</Project>