Skip to content

Commit 5ca4550

Browse files
Merge remote-tracking branch 'origin/main' into feature/10.0
2 parents 5222172 + c57705b commit 5ca4550

File tree

10 files changed

+409
-70
lines changed

10 files changed

+409
-70
lines changed

.github/releases.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@
3535
"outOfSupportDate": "2025-05-11T00:00:00.000Z"
3636
},
3737
"9.0": {
38-
"tag": "v9.0.3",
38+
"tag": "v9.0.4",
3939
"minorReleaseDate": "2024-11-12T00:00:00.000Z",
40-
"patchReleaseDate": "2025-05-13T00:00:00.000Z",
40+
"patchReleaseDate": "2025-08-06T00:00:00.000Z",
4141
"supportedFrameworks": [
4242
"net9.0"
4343
]
4444
},
4545
"8.1": {
46-
"tag": "v8.1.1",
46+
"tag": "v8.1.2",
4747
"minorReleaseDate": "2025-02-11T00:00:00.000Z",
48-
"patchReleaseDate": "2025-05-14T00:00:00.000Z",
48+
"patchReleaseDate": "2025-08-06T00:00:00.000Z",
4949
"supportedFrameworks": [
5050
"net8.0"
5151
]

.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
"omnisharp.enableAsyncCompletion": true,
3030
"omnisharp.enableEditorConfigSupport": true,
3131
"omnisharp.enableRoslynAnalyzers": true,
32-
"omnisharp.organizeImportsOnFormat": true,
3332
"omnisharp.autoStart": true,
3433

3534
// ms-vscode.powershell settings
@@ -47,5 +46,6 @@
4746
"xml",
4847
"msbuild",
4948
"javascript"
50-
]
49+
],
50+
"dotnet.formatting.organizeImportsOnFormat": true
5151
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Today we are releasing the 8.1.2 build of the `dotnet monitor` tool. This release includes:
2+
3+
- Updated dependencies
4+
5+
6+
7+
If you would like to provide additional feedback to the team [please fill out this survey](https://aka.ms/dotnet-monitor-survey?src=rn).
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Today we are releasing the 9.0.4 build of the `dotnet monitor` tool. This release includes:
2+
3+
- Updated dependencies
4+
5+
6+
7+
If you would like to provide additional feedback to the team [please fill out this survey](https://aka.ms/dotnet-monitor-survey?src=rn).

documentation/releases.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Original Release Date | Latest Patch Version | Patch Release Date | End of Support | Runtime Frameworks |
66
| --- | --- | --- | --- | --- | --- |
7-
| 9.0 | November 12, 2024 | [9.0.3](https://github.com/dotnet/dotnet-monitor/releases/tag/v9.0.3) | May 13, 2025 | | net9.0 |
8-
| 8.1 | February 11, 2025 | [8.1.1](https://github.com/dotnet/dotnet-monitor/releases/tag/v8.1.1) | May 14, 2025 | | net8.0 |
7+
| 9.0 | November 12, 2024 | [9.0.4](https://github.com/dotnet/dotnet-monitor/releases/tag/v9.0.4) | August 6, 2025 | | net9.0 |
8+
| 8.1 | February 11, 2025 | [8.1.2](https://github.com/dotnet/dotnet-monitor/releases/tag/v8.1.2) | August 6, 2025 | | net8.0 |
99

1010

1111
## Out of support versions

eng/common/core-templates/job/job.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ parameters:
1919
# publishing defaults
2020
artifacts: ''
2121
enableMicrobuild: false
22-
enableMicrobuildForMacAndLinux: false
2322
microbuildUseESRP: true
2423
enablePublishBuildArtifacts: false
2524
enablePublishBuildAssets: false
@@ -125,11 +124,21 @@ jobs:
125124
- ${{ preStep }}
126125

127126
- ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
128-
- template: /eng/common/core-templates/steps/install-microbuild.yml
129-
parameters:
130-
enableMicrobuild: ${{ parameters.enableMicrobuild }}
131-
enableMicrobuildForMacAndLinux: ${{ parameters.enableMicrobuildForMacAndLinux }}
132-
microbuildUseESRP: ${{ parameters.microbuildUseESRP }}
127+
- ${{ if eq(parameters.enableMicrobuild, 'true') }}:
128+
- task: MicroBuildSigningPlugin@4
129+
displayName: Install MicroBuild plugin
130+
inputs:
131+
signType: $(_SignType)
132+
zipSources: false
133+
feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json
134+
${{ if eq(parameters.microbuildUseESRP, true) }}:
135+
${{ if eq(variables['System.TeamProject'], 'DevDiv') }}:
136+
ConnectedPMEServiceName: 6cc74545-d7b9-4050-9dfa-ebefcc8961ea
137+
${{ else }}:
138+
ConnectedPMEServiceName: 248d384a-b39b-46e3-8ad5-c2c210d5e7ca
139+
env:
140+
TeamName: $(_TeamName)
141+
MicroBuildOutputFolderOverride: '$(Agent.TempDirectory)'
133142
continueOnError: ${{ parameters.continueOnError }}
134143

135144
- ${{ if and(eq(parameters.runAsPublic, 'false'), eq(variables['System.TeamProject'], 'internal')) }}:

eng/common/post-build/publish-using-darc.ps1

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ param(
66
[Parameter(Mandatory=$true)][string] $WaitPublishingFinish,
77
[Parameter(Mandatory=$false)][string] $ArtifactsPublishingAdditionalParameters,
88
[Parameter(Mandatory=$false)][string] $SymbolPublishingAdditionalParameters,
9-
[Parameter(Mandatory=$false)][string] $RequireDefaultChannels,
10-
[Parameter(Mandatory=$false)][string] $SkipAssetsPublishing
9+
[Parameter(Mandatory=$false)][string] $RequireDefaultChannels
1110
)
1211

1312
try {
@@ -40,10 +39,6 @@ try {
4039
$optionalParams.Add("--default-channels-required") | Out-Null
4140
}
4241

43-
if ("true" -eq $SkipAssetsPublishing) {
44-
$optionalParams.Add("--skip-assets-publishing") | Out-Null
45-
}
46-
4742
& $darc add-build-to-channel `
4843
--id $buildId `
4944
--publishing-infra-version $PublishingInfraVersion `

eng/dependabot/independent/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AzureIdentityVersion>1.14.2</AzureIdentityVersion>
77
<AzureStorageBlobsVersion>12.25.0</AzureStorageBlobsVersion>
88
<AzureStorageQueuesVersion>12.23.0</AzureStorageQueuesVersion>
9-
<MicrosoftIdentityWebVersion>3.11.0</MicrosoftIdentityWebVersion>
9+
<MicrosoftIdentityWebVersion>3.12.0</MicrosoftIdentityWebVersion>
1010
<MicrosoftOpenApiReadersVersion>1.6.24</MicrosoftOpenApiReadersVersion>
1111
<SystemPrivateUriVersion>4.3.2</SystemPrivateUriVersion>
1212
<SystemSecurityPrincipalWindowsVersion>5.0.0</SystemSecurityPrincipalWindowsVersion>

eng/dependabot/net9.0/Versions.props

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
<!-- Import references updated by Dependabot. -->
33
<PropertyGroup>
44
<!-- Microsoft.Extensions.Configuration.Abstractions -->
5-
<MicrosoftExtensionsConfigurationAbstractions90Version>9.0.7</MicrosoftExtensionsConfigurationAbstractions90Version>
5+
<MicrosoftExtensionsConfigurationAbstractions90Version>9.0.8</MicrosoftExtensionsConfigurationAbstractions90Version>
66
<!-- Microsoft.Extensions.Logging -->
7-
<MicrosoftExtensionsLogging90Version>9.0.7</MicrosoftExtensionsLogging90Version>
7+
<MicrosoftExtensionsLogging90Version>9.0.8</MicrosoftExtensionsLogging90Version>
88
<!-- Microsoft.Extensions.Logging.Abstractions -->
9-
<MicrosoftExtensionsLoggingAbstractions90Version>9.0.7</MicrosoftExtensionsLoggingAbstractions90Version>
9+
<MicrosoftExtensionsLoggingAbstractions90Version>9.0.8</MicrosoftExtensionsLoggingAbstractions90Version>
1010
<!-- Microsoft.Extensions.Logging.Console -->
11-
<MicrosoftExtensionsLoggingConsole90Version>9.0.7</MicrosoftExtensionsLoggingConsole90Version>
11+
<MicrosoftExtensionsLoggingConsole90Version>9.0.8</MicrosoftExtensionsLoggingConsole90Version>
1212
<!-- Microsoft.NETCore.App -->
1313
<MicrosoftNETCoreApp90Version>9.0.4</MicrosoftNETCoreApp90Version>
1414
<!-- System.Text.Json -->
15-
<SystemTextJson90Version>9.0.7</SystemTextJson90Version>
15+
<SystemTextJson90Version>9.0.8</SystemTextJson90Version>
1616
</PropertyGroup>
1717
</Project>

0 commit comments

Comments
 (0)