Bump MongoDB.Driver from 3.4.3 to 3.5.0 #18239
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | name: Verify app trimming xml file changes have been persisted | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| verify_app_trimming_descriptor_generator: | |
| runs-on: windows-latest | |
| timeout-minutes: 34 # max + 3*std over the last 3700 runs | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Support longpaths | |
| run: git config --system core.longpaths true | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # v5.0.0 | |
| with: | |
| global-json-file: global.json | |
| - name: "Removing existing Datadog.Trace.Trimming.xml" | |
| run: Get-ChildItem –Path ".\tracer\src\Datadog.Trace.Trimming\build\Datadog.Trace.Trimming.xml" -Recurse -File | Remove-Item | |
| - name: "Regenerating Datadog.Trace.Trimming.xml" | |
| run: .\tracer\build.ps1 CreateRequiredDirectories Restore CompileManagedLoader CompileManagedSrc CreateTrimmingFile | |
| - name: "Verify no changes in Datadog.Trace.Trimming.xml" | |
| run: | | |
| git diff --quiet -- .\tracer\src\Datadog.Trace.Trimming\build | |
| if ($LASTEXITCODE -eq 1) { | |
| git diff -- .\tracer\src\Datadog.Trace.Trimming\build | |
| Write-Error "Found changes in Datadog.Trace.Trimming.xml. Build the solution locally and ensure you have committed the Datadog.Trace.Trimming.xml changes." | |
| Exit 1 | |
| } else { | |
| echo "No changes found to generated files" | |
| } |