Skip to content

Commit e6b71ce

Browse files
[VMR] Codeflow 0e185be-0e185be
[[ commit created by automation ]]
1 parent 75eb7c3 commit e6b71ce

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

src/Layout/redist/targets/GenerateBundledVersions.targets

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,28 +15,28 @@
1515
Overwrite="true"
1616
Encoding="ASCII" />
1717

18-
<!-- The Version.Details file doesn't contain live information when building the
19-
.NET product inside the orchestrator. Therefore don't read from it in that mode. -->
18+
<!-- The Version.Details file doesn't contain live information when building
19+
inside the VMR. Therefore don't read from it in that mode. -->
2020
<GetDependencyInfo
2121
VersionDetailsXmlFile="$(RepositoryEngineeringDir)Version.Details.xml"
2222
DependencyName="Microsoft.NETCore.App.Ref"
23-
Condition="'$(DotNetBuildOrchestrator)' != 'true'">
23+
Condition="'$(DotNetBuildFromVMR)' != 'true'">
2424
<Output TaskParameter="DependencyVersion" PropertyName="DepRuntimeVersion" />
2525
<Output TaskParameter="DependencyCommit" PropertyName="DepRuntimeCommit" />
2626
</GetDependencyInfo>
2727

2828
<GetDependencyInfo
2929
VersionDetailsXmlFile="$(RepositoryEngineeringDir)Version.Details.xml"
3030
DependencyName="Microsoft.AspNetCore.App.Ref"
31-
Condition="'$(DotNetBuildOrchestrator)' != 'true'">
31+
Condition="'$(DotNetBuildFromVMR)' != 'true'">
3232
<Output TaskParameter="DependencyVersion" PropertyName="DepAspNetCoreVersion" />
3333
<Output TaskParameter="DependencyCommit" PropertyName="DepAspNetCoreCommit" />
3434
</GetDependencyInfo>
3535

3636
<GetDependencyInfo
3737
VersionDetailsXmlFile="$(RepositoryEngineeringDir)Version.Details.xml"
3838
DependencyName="Microsoft.WindowsDesktop.App.Ref"
39-
Condition="'$(DotNetBuildOrchestrator)' != 'true'">
39+
Condition="'$(DotNetBuildFromVMR)' != 'true'">
4040
<Output TaskParameter="DependencyVersion" PropertyName="DepWindowsDesktopVersion" />
4141
<Output TaskParameter="DependencyCommit" PropertyName="DepWindowsDesktopCommit" />
4242
</GetDependencyInfo>

src/Layout/redist/targets/GenerateLayout.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,8 @@
199199
<Target Name="PublishTestCli">
200200
<PropertyGroup>
201201
<TestCliNuGetDirectoryTargetFramework Condition="'$(DotNetBuildSourceOnly)' != 'true'" >net9.0</TestCliNuGetDirectoryTargetFramework>
202-
<TestCliNuGetDirectoryTargetFramework Condition="'$(DotNetBuildSourceOnly)' == 'true' and '$(DotNetBuildOrchestrator)' == 'true'" >$(NetCurrent)</TestCliNuGetDirectoryTargetFramework>
203-
<TestCliNuGetDirectoryTargetFramework Condition="'$(DotNetBuildSourceOnly)' == 'true' and '$(DotNetBuildOrchestrator)' != 'true'" >net9.0</TestCliNuGetDirectoryTargetFramework>
202+
<TestCliNuGetDirectoryTargetFramework Condition="'$(DotNetBuildSourceOnly)' == 'true' and '$(DotNetBuildFromVMR)' == 'true'" >$(NetCurrent)</TestCliNuGetDirectoryTargetFramework>
203+
<TestCliNuGetDirectoryTargetFramework Condition="'$(DotNetBuildSourceOnly)' == 'true' and '$(DotNetBuildFromVMR)' != 'true'" >net9.0</TestCliNuGetDirectoryTargetFramework>
204204
<TestCliNuGetDirectory>$(NuGetPackageRoot)microsoft.testplatform.cli/$(MicrosoftTestPlatformCLIPackageVersion)/contentFiles/any/$(TestCliNuGetDirectoryTargetFramework)/</TestCliNuGetDirectory>
205205
</PropertyGroup>
206206

src/Layout/redist/targets/RestoreLayout.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@
305305
For example, the dotnetbuilds uri for 'file:///vmr/dotnet2/artifacts/obj/x64/Release/blob-feed/assets//aspnetcore_base_runtime.version'
306306
would end up 'https://ci.dot.net/public//dotnet-runtime-8.0.0-rc.1.23381.3-centos.8-x64.tar.gz'. This is
307307
missing the runtime version number directory. -->
308-
<ItemGroup Condition="'$(DotNetBuildOrchestrator)' != 'true'">
308+
<ItemGroup Condition="'$(DotNetBuildFromVMR)' != 'true'">
309309
<UrisToDownload Include="$([System.String]::Copy('%(ComponentToDownload.BaseUrl)').Replace($(PublicBaseURL), 'https://ci.dot.net/public/'))/%(ComponentToDownload.DownloadFileName)"
310310
Condition="'%(ComponentToDownload.ShouldDownload)' == 'true'">
311311
<ShouldDownload>%(ComponentToDownload.ShouldDownload)</ShouldDownload>

src/Layout/redist/tools/tool_fsc.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
<Target Name="_ResolvePublishNuGetPackagePdbsAndXml"
3131
AfterTargets="_ResolveCopyLocalAssetsForPublish">
3232
<PropertyGroup>
33-
<FSharpCorePath Condition="'$(DotNetFinalVersionKind)'!='release'">Shipping</FSharpCorePath>
34-
<FSharpCorePath Condition="'$(DotNetFinalVersionKind)'=='release'">Release</FSharpCorePath>
35-
<FSharpTfm>net9.0</FSharpTfm>
36-
<FSharpTfm Condition="'$(DotNetBuildSourceOnly)' == 'true' and '$(DotNetBuildOrchestrator)' == 'true'">$(NetCurrent)</FSharpTfm>
33+
<FSharpCorePath Condition="'$(DotNetFinalVersionKind)'!='release'">Shipping</FSharpCorePath>
34+
<FSharpCorePath Condition="'$(DotNetFinalVersionKind)'=='release'">Release</FSharpCorePath>
35+
<FSharpTfm>net9.0</FSharpTfm>
36+
<FSharpTfm Condition="'$(DotNetBuildSourceOnly)' == 'true' and '$(DotNetBuildFromVMR)' == 'true'">$(NetCurrent)</FSharpTfm>
3737
</PropertyGroup>
3838

3939
<ItemGroup>

0 commit comments

Comments
 (0)