Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
cf264e2
Initial plan
Copilot Dec 5, 2025
3c0d56a
WIP: Investigation of chained item function comparison issue
Copilot Dec 5, 2025
e991105
Fix chained item function empty string comparison in conditions
Copilot Dec 5, 2025
49a6fd4
Fix unhandled exception in /getItem and /getTargetResult for items wi…
Copilot Jan 5, 2026
9ba8f3e
Log SDK environment variable messages only when values differ (#12918)
Copilot Jan 5, 2026
5fccf5a
Localized file check-in by OneLocBuild Task: Build definition ID 9434…
dotnet-bot Jan 5, 2026
fb77584
Localized file check-in by OneLocBuild Task: Build definition ID 9434…
YuliiaKovalova Jan 5, 2026
2392c79
Fix terminal logger quiet mode to show project context for warnings/e…
Copilot Jan 6, 2026
3d8dd2e
Replace OpenTelemetry with Microsoft.VisualStudio.Telemetry for VS (#…
YuliiaKovalova Jan 7, 2026
b8e744f
Localized file check-in by OneLocBuild Task: Build definition ID 9434…
dotnet-bot Jan 7, 2026
bddfab6
[main] Source code updates from dotnet/dotnet (#12979)
dotnet-maestro[bot] Jan 7, 2026
a8434cb
eliminate test data serialization warnings (#12983)
JanProvaznik Jan 7, 2026
0a54973
Add the feature flag that allows users to opt out automatic UTF8 cons…
GangWang01 Jan 7, 2026
dc7f357
Polyfill clean up and source package organization (#12977)
DustinCampbell Jan 7, 2026
9da1bd7
Localized file check-in by OneLocBuild Task: Build definition ID 9434…
dotnet-bot Jan 8, 2026
09c7666
Add documentation for enabling binlog collection via env var (#12805)
YuliiaKovalova Jan 9, 2026
3f8a08b
Support multiple binary logs from command line arguments (#12706)
Copilot Jan 9, 2026
3b83621
Add VcxprojReader.exe to ngenApplications (#12986)
YuliiaKovalova Jan 9, 2026
b8cacb7
Add HostServices support in Out-of-Process Task Host (#12753)
YuliiaKovalova Jan 9, 2026
f469379
[main] Update dependencies from dotnet/roslyn (#13002)
dotnet-maestro[bot] Jan 12, 2026
7c44a50
[main] Update dependencies from dotnet/arcade (#13000)
dotnet-maestro[bot] Jan 12, 2026
7cf4f24
Localized file check-in by OneLocBuild Task: Build definition ID 9434…
dotnet-bot Jan 12, 2026
6ef3f7b
Add telemetry tracking for task factory names and runtime usage (#12989)
Copilot Jan 12, 2026
712f8ef
[main] Source code updates from dotnet/dotnet (#12987)
dotnet-maestro[bot] Jan 12, 2026
6883d6d
Localized file check-in by OneLocBuild Task: Build definition ID 9434…
dotnet-bot Jan 12, 2026
bd54b25
Snap for VS 18.3 and update branding to VS 18.4 (#13005)
Copilot Jan 12, 2026
21efb94
[main] Source code updates from dotnet/dotnet (#13012)
dotnet-maestro[bot] Jan 13, 2026
39e218c
Add telemetry to categorize build failure reasons (#13007)
Copilot Jan 13, 2026
5284a3f
Update MicrosoftBuildVersion in analyzer template (#13011)
github-actions[bot] Jan 13, 2026
75edd3c
Update OptProf drop metadata configuration (#13020)
YuliiaKovalova Jan 14, 2026
d7c46da
Fix MSB1025 error when using DistributedFileLogger (-dfl flag) (#13036)
Copilot Jan 15, 2026
633ca60
CmdLine parsing was extracted from XMake and the implementation is vi…
MichalPavlik Jan 16, 2026
5025a99
Make task environment path absolutization not throw. (#13035)
AR-May Jan 16, 2026
58c73e6
Fix flaky test TestTerminalLoggerTogetherWithOtherLoggers (#13044)
Copilot Jan 16, 2026
4618ab5
Enlighten more tasks that require no change (#13045)
AR-May Jan 16, 2026
b703e1a
[main] Update dependencies from dotnet/roslyn (#13050)
dotnet-maestro[bot] Jan 19, 2026
c81b56d
[main] Update dependencies from dotnet/arcade (#13048)
dotnet-maestro[bot] Jan 19, 2026
825180b
Add support for MSBUILD_LOGGING_ARGS (#12993)
YuliiaKovalova Jan 19, 2026
d6f451b
Fix MSBuildEventSource (#13030)
dfederm Jan 19, 2026
c1ccadd
Localized file check-in by OneLocBuild Task: Build definition ID 9434…
dotnet-bot Jan 19, 2026
a949b5a
Merge branch 'main' into copilot/fix-item-function-comparison
JanProvaznik Jan 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .config/git-merge-flow-config.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
},
// Automate opening PRs to merge msbuild's vs18.0 (SDK 10.0.1xx) into vs18.3 (SDK 10.0.2xx, VS)
"vs18.0": {
"MergeToBranch": "main" // update to flow through vs18.3 after we fork for release
"MergeToBranch": "vs18.3"
},
// MSBuild latest release to main
// Automate opening PRs to merge msbuild's vs18.3 (SDK 10.0.2xx) into main
"vs18.3": {
"MergeToBranch": "main"
}
Expand Down
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,12 @@ dotnet_diagnostic.IDE0301.severity = suggestion
dotnet_diagnostic.IDE0305.severity = suggestion
dotnet_diagnostic.IDE0306.severity = suggestion

# Remove unnecessary nullable warning suppression
dotnet_diagnostic.IDE0370.severity = suggestion

# Remove unnecessary 'unsafe' modifier
dotnet_diagnostic.IDE0380.severity = suggestion

# Temporarily disable SA1010 "Opening square brackets should not be preceded by a space" until https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/3687 is fixed
dotnet_diagnostic.SA1010.severity = none

Expand Down
6 changes: 2 additions & 4 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,8 @@
<PackageVersion Include="System.Threading.Tasks.Dataflow" Version="$(SystemThreadingTasksDataflowVersion)" />
<PackageVersion Include="System.Threading.Tasks.Extensions" Version="$(SystemThreadingTasksExtensionsVersion)" />
<PackageVersion Include="xunit.console" Version="$(XUnitVersion)" />
<PackageVersion Include="Microsoft.VisualStudio.OpenTelemetry.Collector" Version="$(MicrosoftVisualStudioOpenTelemetryVersion)" />
<PackageVersion Include="Microsoft.VisualStudio.OpenTelemetry.ClientExtensions" Version="$(MicrosoftVisualStudioOpenTelemetryVersion)" />

<!-- Microsoft.VisualStudio.SolutionPersistence is maintained in eng/dependabot/Directory.Packages.props -->
<PackageVersion Include="Microsoft.VisualStudio.Telemetry" Version="$(MicrosoftVisualStudioTelemetryVersion)" />
<!-- Microsoft.VisualStudio.SolutionPersistence is maintained in eng/dependabot/Packages.props -->
</ItemGroup>

</Project>
12 changes: 8 additions & 4 deletions NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@
<add key="dotnet9-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9-transport/nuget/v3/index.json" />
<add key="dotnet10" value="https://dnceng.pkgs.visualstudio.com/public/_packaging/dotnet10/nuget/v3/index.json" />
<add key="dotnet10-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10-transport/nuget/v3/index.json" />
<add key="dotnet11" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet11/nuget/v3/index.json" />
<add key="dotnet11-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet11-transport/nuget/v3/index.json" />
<add key="vs-impl" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/vs-impl/nuget/v3/index.json" />
</packageSources>
<!-- We don't want other than VS OpenTelemetry libraries from vs-impl -->
<packageSourceMapping>
<packageSource key="vs-impl">
<package pattern="Microsoft.VisualStudio.OpenTelemetry*" />
</packageSource>
<packageSource key="arcade">
<package pattern="*" />
</packageSource>
Expand Down Expand Up @@ -53,6 +51,12 @@
<packageSource key="dotnet10-transport">
<package pattern="*" />
</packageSource>
<packageSource key="dotnet11">
<package pattern="*" />
</packageSource>
<packageSource key="dotnet11-transport">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
<disabledPackageSources>
<!--Begin: Package sources managed by Dependency Flow automation. Do not edit the sources below.-->
Expand Down
30 changes: 0 additions & 30 deletions THIRDPARTYNOTICES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,33 +43,3 @@ Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License.

-------------------------------

Notice for OpenTelemetry .NET
-------------------------------
MSBuild.exe is distributed with OpenTelemetry .NET binaries.

Copyright (c) OpenTelemetry Authors
Source: https://github.com/open-telemetry/opentelemetry-dotnet

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License.

-------------------------------

Notice for Microsoft.VisualStudio.OpenTelemetry.*
-------------------------------
MSBuild.exe is distributed with Microsoft.VisualStudio.OpenTelemetry.* binaries.

Project: Microsoft.VisualStudio.OpenTelemetry
Copyright: (c) Microsoft Corporation
License: https://visualstudio.microsoft.com/license-terms/mt736442/
5 changes: 4 additions & 1 deletion azure-pipelines/.vsts-dotnet-build-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ jobs:
- output: artifactsDrop
sourcePath: '$(Build.SourcesDirectory)\artifacts\official\OptProf\$(BuildConfiguration)\Data'
dropServiceURI: 'https://devdiv.artifacts.visualstudio.com'
dropMetadataContainerName: 'ProfilingInputs/DevDiv/$(Build.Repository.Name)/$(Build.SourceBranchName)/$(Build.BuildNumber)'
buildNumber: 'ProfilingInputs/DevDiv/$(Build.Repository.Name)/$(Build.SourceBranchName)/$(Build.BuildNumber)'
toLowerCase: false
usePat: true
dropMetadataContainerName: 'DropMetadata-OptProf'
condition: and(succeeded(), ${{ parameters.enableOptProf }})

# Publish bootstrapper info for OptProf data collection run to consume
Expand Down
5 changes: 4 additions & 1 deletion azure-pipelines/vs-insertion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ parameters:
values:
- auto
- main
- rel/d18.4
- rel/d18.3
- rel/d18.0
- rel/d17.14
Expand All @@ -67,7 +68,9 @@ parameters:
variables:
# `auto` should work every time and selecting a branch in parameters is likely to fail due to incompatible versions in MSBuild and VS
- name: AutoInsertTargetBranch
${{ if eq(variables['Build.SourceBranchName'], 'vs18.3') }}:
${{ if eq(variables['Build.SourceBranchName'], 'vs18.4') }}:
value: 'rel/d18.4'
${{ elseif eq(variables['Build.SourceBranchName'], 'vs18.3') }}:
value: 'rel/d18.3'
${{ elseif eq(variables['Build.SourceBranchName'], 'vs18.0') }}:
value: 'rel/d18.0'
Expand Down
198 changes: 0 additions & 198 deletions documentation/specs/VS-OpenTelemetry.md

This file was deleted.

Loading