Skip to content

Commit 9c3862c

Browse files
authored
Merge branch 'release/dev18.0' into merge/main-to-release/dev18.0
2 parents 4ecc5e0 + 665b1f1 commit 9c3862c

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

Directory.Build.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
99
<FSharpNetCoreProductDefaultTargetFramework>net9.0</FSharpNetCoreProductDefaultTargetFramework>
1010
<IgnoreMibc Condition="'$(IgnoreMibc)' == ''">$(DotNetBuildSourceOnly)</IgnoreMibc>
11+
<!-- When building in the VMR, we never need to publish Windows PDBs. Any conversion to Windows PDBs will be done during staging if necessary. -->
12+
<PublishWindowsPdb Condition="'$(DotNetBuildOrchestrator)' == 'true'">false</PublishWindowsPdb>
1113
</PropertyGroup>
1214

1315
<!--

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ variables:
3535
# (since for all *new* release branches we insert into VS main and for all *previous* releases we insert into corresponding VS release),
3636
# i.e. 'rel/d17.9' *or* 'main' in dotnet/fsharp/refs/heads/main and 'main' in F# dotnet/fsharp/refs/heads/release/dev17.10 (latest release branch)
3737
- name: VSInsertionTargetBranchName
38-
value: feature/d18initial
38+
value: main
3939
- name: _TeamName
4040
value: FSharp
4141
- name: TeamName

eng/Version.Details.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Dependencies>
3-
<Source Uri="https://github.com/dotnet/dotnet" Mapping="fsharp" Sha="721dc7a2a59416b21fc49447d264009d708d6000" BarId="265489" />
3+
<Source Uri="https://github.com/dotnet/dotnet" Mapping="fsharp" Sha="ad8565092bbfdd5c8b4a94a718d10b2d394f7aee" BarId="268384" />
44
<ProductDependencies>
55
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="9.0.0-alpha.1.25223.3">
66
<Uri>https://github.com/dotnet/source-build-reference-packages</Uri>

proto.proj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
<!-- This needs to be built only in the inner VMR build proto invocation, but not the outer VMR build invocation.
88
The project does not import Arcade targets so we only have the properties that were passed in, rather than
99
calculated properties like DotNetBuildPhase. -->
10-
<ItemGroup Condition="'$(DotNetBuildSourceOnly)'!='true' or '$(DotNetBuildInnerRepo)' == 'true'">
10+
<!-- TODO: Remove this condition when fsharp upgraded to Arcade 10 -->
11+
<ItemGroup Condition="'$(DotNetBuildOrchestrator)' == 'true' or '$(DotNetBuildSourceOnly)' != 'true' or '$(DotNetBuildInnerRepo)' == 'true'">
1112
<Projects Include="buildtools\fslex\fslex.fsproj" />
1213
<Projects Include="buildtools\fsyacc\fsyacc.fsproj" />
1314
<Projects Include="buildtools\AssemblyCheck\AssemblyCheck.fsproj" />

0 commit comments

Comments
 (0)