@@ -998,7 +998,7 @@ bool TryPopulateBuildConfigurations(
998998 TeamCitySourceDependency CreateSourceDependency ( string vcsProjectRootId , string projectName )
999999 => new ( vcsProjectRootId , true , $ "+:. => { context . Product . SourceDependenciesDirectory } /{ projectName } " ) ;
10001000
1001- TeamCitySourceDependency CreateSourceDependencyFromDefintion ( DependencyDefinition dependencyDefinition )
1001+ TeamCitySourceDependency CreateSourceDependencyFromDefinition ( DependencyDefinition dependencyDefinition )
10021002 => CreateSourceDependency ( GetVcsRootId ( dependencyDefinition ) , dependencyDefinition . Name ) ;
10031003
10041004 foreach ( var buildConfiguration in buildConfigurationsByKind [ publicBuildObjectName ] )
@@ -1033,7 +1033,7 @@ TeamCitySourceDependency CreateSourceDependencyFromDefintion( DependencyDefiniti
10331033 $ "Bump version of { bumpedProjectName } ",
10341034 "bump" ) { WorkingDirectory = $ "source-dependencies/{ bumpedProjectName } " } ) ;
10351035
1036- consolidatedVersionBumpSourceDependencies . Add ( CreateSourceDependencyFromDefintion ( dependencyDefinition ) ) ;
1036+ consolidatedVersionBumpSourceDependencies . Add ( CreateSourceDependencyFromDefinition ( dependencyDefinition ) ) ;
10371037
10381038 if ( dependencyDefinition . VcsRepository . DefaultBranchParameter != VcsRepository . DefaultDefaultBranchParameter )
10391039 {
@@ -1104,7 +1104,7 @@ bool TryAddPreOrPostDeploymentBuildConfiguration(
11041104 continue ;
11051105 }
11061106
1107- sourceDependencies . Add ( CreateSourceDependencyFromDefintion ( projectDependencyDefinition ) ) ;
1107+ sourceDependencies . Add ( CreateSourceDependencyFromDefinition ( projectDependencyDefinition ) ) ;
11081108
11091109 if ( projectDependencyDefinition . VcsRepository . DefaultBranchParameter != VcsRepository . DefaultDefaultBranchParameter )
11101110 {
@@ -1173,7 +1173,7 @@ bool TryAddPreOrPostDeploymentBuildConfiguration(
11731173 }
11741174 }
11751175
1176- sourceDependencies . Add ( CreateSourceDependencyFromDefintion ( context . Product . DependencyDefinition ) ) ;
1176+ sourceDependencies . Add ( CreateSourceDependencyFromDefinition ( context . Product . DependencyDefinition ) ) ;
11771177
11781178 steps . Add (
11791179 new TeamCityEngineeringCommandBuildStep (
0 commit comments