GenerateCode.targets 707 B

1234567891011121314151617
  1. <!--
  2. The targets in this file should not be executed from a CI build.
  3. They are meant to be used by developers to update the ASP.NET Core configuration.
  4. -->
  5. <Project>
  6. <!-- Generates a .dgml file representing the repo to repo graph of reach korebuild project -->
  7. <Target Name="GenerateSubmoduleGraph" DependsOnTargets="ResolveRepoInfo;GeneratePropsFiles">
  8. <RepoTasks.GenerateSubmoduleGraph
  9. Solutions="@(Solution)"
  10. Artifacts="@(ArtifactInfo)"
  11. Repositories="@(Repository)"
  12. RepositoryRoot="$(RepositoryRoot)"
  13. Properties="Configuration=$(Configuration);BuildNumber=$(BuildNumber);DotNetPackageVersionPropsPath=$(GeneratedPackageVersionPropsPath)" />
  14. </Target>
  15. </Project>