18 lines
707 B
XML
18 lines
707 B
XML
<!--
|
|
The targets in this file should not be executed from a CI build.
|
|
They are meant to be used by developers to update the ASP.NET Core configuration.
|
|
-->
|
|
<Project>
|
|
|
|
<!-- Generates a .dgml file representing the repo to repo graph of reach korebuild project -->
|
|
<Target Name="GenerateSubmoduleGraph" DependsOnTargets="ResolveRepoInfo;GeneratePropsFiles">
|
|
<RepoTasks.GenerateSubmoduleGraph
|
|
Solutions="@(Solution)"
|
|
Artifacts="@(ArtifactInfo)"
|
|
Repositories="@(Repository)"
|
|
RepositoryRoot="$(RepositoryRoot)"
|
|
Properties="Configuration=$(Configuration);BuildNumber=$(BuildNumber);DotNetPackageVersionPropsPath=$(GeneratedPackageVersionPropsPath)" />
|
|
</Target>
|
|
|
|
</Project>
|