|
10 | 10 | </PropertyGroup>
|
11 | 11 |
|
12 | 12 | <Target Name="BuildRepoReferences" Condition="'@(RepositoryReference)' != '' and '$(SkipRepoReferences)' != 'true'">
|
13 |
| - <Message Importance="High" Text="Building dependencies [@(RepositoryReference)] needed by '$(RepositoryName)'." /> |
| 13 | + <Message Importance="High" Text="Building dependencies [@(RepositoryReference)] needed by '$(InnerRepoName)'." /> |
14 | 14 |
|
15 | 15 | <ItemGroup>
|
16 | 16 | <_DependentProject Include="@(RepositoryReference -> '%(Identity).proj')" />
|
|
81 | 81 |
|
82 | 82 | <ItemGroup>
|
83 | 83 | <_DependentProjectSources Include="@(RepositoryReference -> '%(Identity).proj')">
|
84 |
| - <RepositoryName>%(Identity)</RepositoryName> |
| 84 | + <InnerRepoName>%(Identity)</InnerRepoName> |
85 | 85 | </_DependentProjectSources>
|
86 | 86 | </ItemGroup>
|
87 | 87 |
|
|
104 | 104 | <WriteLinesToFile Lines="$(NewNuGetConfigContent)" File="$(NewNuGetConfigFile)" />
|
105 | 105 |
|
106 | 106 | <AddSourceToNuGetConfig NuGetConfigFile="$(NewNuGetConfigFile)"
|
107 |
| - SourceName="%(_DependencyProjectsPackagesOutput.RepositoryName)" |
| 107 | + SourceName="%(_DependencyProjectsPackagesOutput.InnerRepoName)" |
108 | 108 | SourcePath="%(_DependencyProjectsPackagesOutput.Identity)" />
|
109 | 109 | </Target>
|
110 | 110 |
|
|
156 | 156 | <EnvironmentVariables Condition="'$(NUGET_PACKAGES)' != ''" Include="NUGET_PACKAGES=$(NUGET_PACKAGES)" />
|
157 | 157 | </ItemGroup>
|
158 | 158 |
|
159 |
| - <Message Importance="High" Text="[$([System.DateTime]::Now.ToString('HH:mm:ss.ff'))] Building '$(RepositoryName)'" /> |
| 159 | + <Message Importance="High" Text="[$([System.DateTime]::Now.ToString('HH:mm:ss.ff'))] Building '$(InnerRepoName)'" /> |
160 | 160 | <Message Importance="High" Text="Running command:" />
|
161 | 161 | <Message Importance="High" Text=" $(BuildCommand)" Condition="'$(BuildCommand)' != ''" />
|
162 | 162 | <Message Importance="High" Text=" Using custom build target" Condition="'$(BuildCommand)' == ''" />
|
|
172 | 172 |
|
173 | 173 | <CallTarget Targets="CustomRepoBuild" Condition="'$(CustomRepoBuild)' == 'true'" />
|
174 | 174 |
|
175 |
| - <Message Importance="High" Text="[$([System.DateTime]::Now.ToString('HH:mm:ss.ff'))] Building '$(RepositoryName)'...done" /> |
| 175 | + <Message Importance="High" Text="[$([System.DateTime]::Now.ToString('HH:mm:ss.ff'))] Building '$(InnerRepoName)'...done" /> |
176 | 176 |
|
177 | 177 | <MakeDir Directories="$(BaseIntermediateOutputPath)" />
|
178 | 178 | <Touch Files="$(BaseIntermediateOutputPath)RepoBuild.complete" AlwaysCreate="true">
|
|
184 | 184 |
|
185 | 185 | <Target Name="ReportRepoError">
|
186 | 186 | <Message Importance="High" Text="$([System.IO.File]::ReadAllText('$(RepoConsoleLogFile)'))" Condition="Exists('$(RepoConsoleLogFile)')" />
|
187 |
| - <Message Importance="High" Text="'$(RepositoryName)' failed during build." /> |
| 187 | + <Message Importance="High" Text="'$(InnerRepoName)' failed during build." /> |
188 | 188 | <Message Importance="High" Text="See '$(RepoConsoleLogFile)' for more information." Condition="Exists('$(RepoConsoleLogFile)')" />
|
189 | 189 | </Target>
|
190 | 190 |
|
|
0 commit comments