Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ Variable groups:
- Jobs that produce no assemblies (symbol publishing, signed-package validation, version computation) set `ob_sdl_apiscan_enabled: false` rather than reporting a name/version
- Each build job also sets `ob_sdl_apiscan_softwareFolder` and `ob_sdl_apiscan_symbolsFolder` to its per-package `apiScan/<package>/dlls` and `apiScan/<package>/pdbs` paths
- CodeQL, SBOM, Policheck (`break: true`): enabled in both pipelines
- SBOM package name/version are resolvable **only** from the pipeline's `globalSdl.sbom` block — OneBranch's artifact-publishing path reads `globalSdl.sbom.packageName`/`packageVersion` directly and has no per-job equivalent (the `templateContext.sdl.sbom` override only applies to the native 1ES Stages entry point, which this repo does not use). Because the pipeline produces six differently-named and independently-versioned packages, `globalSdl.sbom` indirects through the `$(sbomPackageName)` / `$(sbomPackageVersion)` variables, which each build job sets to its own `packageFullName` and computed `packageVersion`. Jobs that publish no packages (version computation, symbol publishing) set `ob_sdl_sbom_enabled: false` alongside their existing APIScan/BinSkim opt-outs, so the variables never need pipeline-level defaults
- asyncSdl `enabled: false` in both; individual sub-tools (CredScan, BinSkim, Armory, Roslyn) configured underneath
- Policheck exclusions: `$(REPO_ROOT)\.config\PolicheckExclusions.xml`
- CredScan suppressions: `$(REPO_ROOT)/.config/CredScanSuppressions.json`
Expand Down
56 changes: 17 additions & 39 deletions .github/instructions/sqlclient-package-versions.instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Each `Versions.props` uses a 3-tier `<Choose>` block:
| Priority | Condition | PackageVersion | FileVersion |
|----------|-----------|----------------|-------------|
| 1 | `<Pkg>PackageVersion` explicitly provided | Used as-is | Strip prerelease + append BuildNumber |
| 2 | `BuildNumber` provided (non-zero) | `NextVersion[-BuildSuffix+BuildNumber]` | `NextVersion.Split('-')[0].BuildNumber` |
| 2 | `BuildNumber` provided (non-zero) | `NextVersion[-BuildSuffix]`, then `.BuildNumber` appended if that carries a prerelease tag | `NextVersion.Split('-')[0].BuildNumber` |
| 3 | Nothing provided | `NextVersion-dev` | `NextVersion.Split('-')[0].0` |

For every family package, `<Pkg>` is `SqlClient` (e.g. `-p:SqlClientPackageVersion=...`); for
Expand Down Expand Up @@ -79,7 +79,7 @@ Microsoft.SqlServer.Server it is `SqlServer`.

- Versions computed in `compute-versions-ci-stage.yml` (runs `GetVersions*` targets with `-p:BuildSuffix=pr -p:BuildNumber=...`)
- Falls into Priority 2 with BuildSuffix present.
- **Result:** `7.1.0-preview1-pr15401` / FileVersion `7.1.0.15401`
- **Result:** `7.1.0-preview1-pr.15401` / FileVersion `7.1.0.15401`
- Dependencies are project references — all packages built together in-tree.

**Mode:** Package (PR package-ref validation)
Expand All @@ -93,7 +93,7 @@ Microsoft.SqlServer.Server it is `SqlServer`.

Same structure as PR but passes `buildSuffix: 'ci'` explicitly.

- **Result:** `7.1.0-preview1-ci15401` / FileVersion `7.1.0.15401`
- **Result:** `7.1.0-preview1-ci.15401` / FileVersion `7.1.0.15401`

### OneBranch Pipeline (official)

Expand All @@ -104,8 +104,8 @@ Uses the full `compute-versions-stage.yml` machinery:
#### Step A: Compute Versions (dedicated early stage)

1. Runs the `GetVersionsSqlClient` and `GetVersionsSqlServer` MSBuild targets against `build.proj`.
2. Each target calls `dotnet build <project> -getProperty:<Pkg>PackageVersion` with `BuildNumber` but **no BuildSuffix**.
3. Falls into Priority 2 without BuildSuffix → `PackageVersion = NextVersion` as-is (e.g. `7.1.0-preview1`).
2. Each target calls `dotnet build <project> -getProperty:<Pkg>PackageVersion` and `-getProperty:<Pkg>FileVersion` with `BuildNumber` but **no BuildSuffix**.
3. Falls into Priority 2 without BuildSuffix. `NextVersion` already carries a prerelease tag on `main`, so the build number is appended (e.g. `7.1.0-preview1.26238.3`); on a release branch the stable `NextVersion` is used as-is (e.g. `7.1.0`).
4. `GetVersionsSqlServer` also extracts `SqlServerPublishedVersion` (the SqlClient family has no published version).

#### Step B: Resolve Effective Versions
Expand Down Expand Up @@ -136,50 +136,28 @@ Each downstream build job receives:

Since an explicit `<Pkg>PackageVersion` is provided, Versions.props hits Priority 1 — uses the value verbatim.

#### Package Version Shapes: `addRevision`
#### Package Version Shapes

Both OneBranch pipelines expose `addRevision` (default `false`), which selects between two mutually
exclusive package version shapes. Their human-readable run name is `$(Year:YY)$(DayOfYear)$(Rev:.r)`,
and the compute stage receives both that run name (as `Build.BuildNumber`) and the globally unique
`Build.BuildId` (as the revision).

**Default path — `addRevision: false`.** The pipeline run name is appended after any prerelease
suffix, reproducing the shape shipped by earlier previews. `Build.BuildId` is not used:
Both OneBranch pipelines use the human-readable run name `$(Year:YY)$(DayOfYear)$(Rev:.r)`, which the
compute stage receives as `Build.BuildNumber`. That run name drives the single supported package
version shape: it is appended after any prerelease suffix, reproducing the shape shipped by earlier
previews.

- `1.2.3` stays `1.2.3` — non-preview releases are never stamped with a build number
- `1.2.3-preview1` becomes `1.2.3-preview1.<build_number>`, e.g. `7.1.0-preview3.26238.3`
- The matching file version is `1.2.3.<date_segment>`, e.g. `7.1.0.26238`

Note the asymmetry: the *package* version omits the build number for non-preview releases, but the
*file* version always carries one in its fourth component. This keeps every shipped assembly
date-encoded and traceable to the run that produced it, while preserving the released package
version customers expect.

**Opt-in path — `addRevision: true`.** Version revisions come from `Build.BuildId` instead, which is
mapped into the unsigned 16-bit file-version range before canonical file versions are evaluated:

```text
revision = ((Build.BuildId - 1) % 65535) + 1
```

Build IDs `1` through `65535` map directly; subsequent IDs wrap back through that range. The compute
stage logs the mapping whenever wrapping occurs because the revision can then collide with an earlier
run. The mapped value is inserted before any package prerelease suffix so package and file versions
use the same revision:

- `1.2.3` becomes `1.2.3.<revision>`
- `1.2.3-preview1` becomes `1.2.3.<revision>-preview1`
- The matching file version is `1.2.3.<revision>`

This shape exists for repeated test publishes of the same base version, where each run needs a
distinct package version. `Build.BuildNumber` is not used on this path.
date-encoded, while preserving the released package version customers expect.

Only packages built in the current run are revised or stamped. When `buildSqlServer` is `false`, the
effective SqlServer version remains `SqlServerPublishedVersion` so dependency restore continues to
request the package that actually exists on NuGet.
The file version's fourth component is only the *date* segment of the run name, because a four-part
file version cannot hold the full `<date>.<run>` value. Repeated runs on the same day therefore share
a file version even though their package versions differ.

An explicit four-part package version is also treated as the complete file version base by both
canonical Versions.props files; they do not append `FileVersionBuildNumber` as a fifth component.
Only packages built in the current run are stamped. When `buildSqlServer` is `false`, the effective
SqlServer version remains `SqlServerPublishedVersion` so dependency restore continues to request the
package that actually exists on NuGet.

#### Summary

Expand Down
83 changes: 78 additions & 5 deletions build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,21 @@
packages — use PackageVersionSqlClient (below) to set the version for the entire family.
-->

<!--
SqlClientNextVersion
Applies to: GetVersionsSqlClient
Description: Overrides the source-declared base version used to calculate the SqlClient
family package and file versions. BuildNumber and BuildSuffix are applied to
this value by Versions.props. An explicit PackageVersionSqlClient remains
higher precedence for build and pack targets.
Default value: The value declared in src/Microsoft.Data.SqlClient/Versions.props
Example: 7.1.0-preview3
-->
<SqlClientNextVersion Condition="'$(SqlClientNextVersion)' == ''" />
<SqlClientNextVersionArgument Condition="'$(SqlClientNextVersion)' != ''">
-p:SqlClientNextVersion=$(SqlClientNextVersion)
</SqlClientNextVersionArgument>

<!--
PackageVersionSqlClient
Applies to:
Expand All @@ -120,6 +135,36 @@
-p:SqlClientPackageVersion=$(PackageVersionSqlClient)
</PackageVersionSqlClientArgument>

<!--
FileVersionSqlClient
Applies to: The same targets as PackageVersionSqlClient.
Description: Specifies the assembly file version stamped on the SqlClient *family*. When
omitted, Versions.props derives it from the package version and BuildNumber.
Supply it to stamp a pre-computed value instead, so no consumer has to
re-derive it. The assembly version is always derived from this value.
Default value: [blank]
Example: 7.1.0.26238
-->
<FileVersionSqlClient Condition="'$(FileVersionSqlClient)' == ''" />
<FileVersionSqlClientArgument Condition="'$(FileVersionSqlClient)' != ''">
-p:SqlClientFileVersion=$(FileVersionSqlClient)
Comment thread
paulmedynski marked this conversation as resolved.
</FileVersionSqlClientArgument>

<!--
SqlServerNextVersion
Applies to: GetVersionsSqlServer
Description: Overrides the source-declared base version used to calculate the
Microsoft.SqlServer.Server package and file versions. BuildNumber and
BuildSuffix are applied to this value by Versions.props. An explicit
PackageVersionSqlServer remains higher precedence for build and pack targets.
Default value: The value declared in src/Microsoft.SqlServer.Server/Versions.props
Example: 1.1.0-preview1
-->
<SqlServerNextVersion Condition="'$(SqlServerNextVersion)' == ''" />
<SqlServerNextVersionArgument Condition="'$(SqlServerNextVersion)' != ''">
-p:SqlServerNextVersion=$(SqlServerNextVersion)
</SqlServerNextVersionArgument>

<!--
PackageVersionSqlServer
Applies to:
Expand All @@ -137,6 +182,20 @@
-p:SqlServerPackageVersion=$(PackageVersionSqlServer)
</PackageVersionSqlServerArgument>

<!--
FileVersionSqlServer
Applies to: The same targets as PackageVersionSqlServer.
Description: Specifies the assembly file version stamped on Microsoft.SqlServer.Server.
When omitted, Versions.props derives it from the package version and
BuildNumber. Supply it to stamp a pre-computed value instead.
Default value: [blank]
Example: 1.1.0.26238
-->
<FileVersionSqlServer Condition="'$(FileVersionSqlServer)' == ''" />
<FileVersionSqlServerArgument Condition="'$(FileVersionSqlServer)' != ''">
-p:SqlServerFileVersion=$(FileVersionSqlServer)
</FileVersionSqlServerArgument>

<!--
ReferenceType
Applies to: BuildSqlClient, BuildSqlClientImpl
Expand Down Expand Up @@ -451,20 +510,20 @@
Usage:
dotnet build build.proj -t:GetVersionsSqlClient -v:m -nologo -p:BuildNumber=1234
# stdout contains:
# PackageVersion: 7.1.0-preview1
# PackageVersion: 7.1.0-preview1.1234
# FileVersion: 7.1.0.1234
-->

<Target Name="GetVersionsSqlClient">
<PropertyGroup>
<_Cmd>"$(DotnetPath)dotnet" build "$(SqlClientProjectPath)" -getProperty:SqlClientPackageVersion $(BuildNumberArgument) $(BuildSuffixArgument)</_Cmd>
<_Cmd>"$(DotnetPath)dotnet" build "$(SqlClientProjectPath)" -getProperty:SqlClientPackageVersion $(BuildNumberArgument) $(BuildSuffixArgument) $(SqlClientNextVersionArgument)</_Cmd>
Comment thread
paulmedynski marked this conversation as resolved.
<_Cmd>$([System.Text.RegularExpressions.Regex]::Replace($(_Cmd), "\s+", " "))</_Cmd>
</PropertyGroup>
<Exec Command="$(_Cmd)" ConsoleToMsBuild="true" StandardOutputImportance="High">
<Output TaskParameter="ConsoleOutput" PropertyName="_PackageVersion" />
</Exec>
<PropertyGroup>
<_Cmd>"$(DotnetPath)dotnet" build "$(SqlClientProjectPath)" -getProperty:SqlClientFileVersion $(BuildNumberArgument) $(BuildSuffixArgument)</_Cmd>
<_Cmd>"$(DotnetPath)dotnet" build "$(SqlClientProjectPath)" -getProperty:SqlClientFileVersion $(BuildNumberArgument) $(BuildSuffixArgument) $(SqlClientNextVersionArgument)</_Cmd>
<_Cmd>$([System.Text.RegularExpressions.Regex]::Replace($(_Cmd), "\s+", " "))</_Cmd>
</PropertyGroup>
<Exec Command="$(_Cmd)" ConsoleToMsBuild="true" StandardOutputImportance="High">
Expand All @@ -476,7 +535,7 @@

<Target Name="GetVersionsSqlServer">
<PropertyGroup>
<_Cmd>"$(DotnetPath)dotnet" build "$(SqlServerProjectPath)" -getProperty:SqlServerPackageVersion $(BuildNumberArgument) $(BuildSuffixArgument)</_Cmd>
<_Cmd>"$(DotnetPath)dotnet" build "$(SqlServerProjectPath)" -getProperty:SqlServerPackageVersion $(BuildNumberArgument) $(BuildSuffixArgument) $(SqlServerNextVersionArgument)</_Cmd>
<_Cmd>$([System.Text.RegularExpressions.Regex]::Replace($(_Cmd), "\s+", " "))</_Cmd>
</PropertyGroup>
<Exec Command="$(_Cmd)" ConsoleToMsBuild="true" StandardOutputImportance="High">
Expand All @@ -486,7 +545,7 @@
<Output TaskParameter="ConsoleOutput" PropertyName="_PublishedVersion" />
</Exec>
<PropertyGroup>
<_Cmd>"$(DotnetPath)dotnet" build "$(SqlServerProjectPath)" -getProperty:SqlServerFileVersion $(BuildNumberArgument) $(BuildSuffixArgument)</_Cmd>
<_Cmd>"$(DotnetPath)dotnet" build "$(SqlServerProjectPath)" -getProperty:SqlServerFileVersion $(BuildNumberArgument) $(BuildSuffixArgument) $(SqlServerNextVersionArgument)</_Cmd>
<_Cmd>$([System.Text.RegularExpressions.Regex]::Replace($(_Cmd), "\s+", " "))</_Cmd>
</PropertyGroup>
<Exec Command="$(_Cmd)" ConsoleToMsBuild="true" StandardOutputImportance="High">
Expand Down Expand Up @@ -574,6 +633,7 @@
$(BuildNumberArgument)
$(BuildSuffixArgument)
$(PackageVersionSqlClientArgument)
$(FileVersionSqlClientArgument)

<!-- Reference Type Arguments -->
$(ReferenceTypeArgument)
Expand Down Expand Up @@ -605,6 +665,7 @@
$(BuildNumberArgument)
$(BuildSuffixArgument)
$(PackageVersionSqlClientArgument)
$(FileVersionSqlClientArgument)

<!-- Reference type arguments -->
$(ReferenceTypeArgument)
Expand Down Expand Up @@ -636,6 +697,7 @@
$(BuildNumberArgument)
$(BuildSuffixArgument)
$(PackageVersionSqlClientArgument)
$(FileVersionSqlClientArgument)

<!-- Reference Type Arguments -->
$(ReferenceTypeArgument)
Expand Down Expand Up @@ -679,6 +741,7 @@
$(BuildNumberArgument)
$(BuildSuffixArgument)
$(PackageVersionSqlClientArgument)
$(FileVersionSqlClientArgument)

<!-- Reference Type Arguments -->
$(ReferenceTypeArgument)
Expand Down Expand Up @@ -781,7 +844,7 @@
</PropertyGroup>
<Message Importance="High" Text=">>> Running manual tests for SqlClient"/>
<Message Text=" Command: $(DotnetCommand)"/>
<Exec ConsoleToMsBuild="true" Command="$(DotnetCommand)" />

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / sqlclient-pr (Test: linux_net8 sqlclient_manual_azure_123_linux_net8)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "/mnt/vss/_work/1/s/src/../src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --collect "Code coverage" --settings "/mnt/vss/_work/1/s/src/../src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/CodeCoverage.runsettings" --filter "category!=failing&category!=flaky&category!=interactive&category!=signed&(Set=1|Set=2|Set=3)" -f net8.0 --results-directory "/mnt/vss/_work/1/s/test_results/linux_net8_sqlclient_manual_azure_123" --logger:"trx;LogFilePrefix=SqlClientManual-Unix-net8.0-123" " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win11_ARM64_Azure_Sql net9_0_AnyCPU_ManagedSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --collect "Code coverage" --settings "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/CodeCoverage.runsettings" --filter "category!=failing&category!=flaky&category!=interactive&category!=signed&(Set=3)" -f net9.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net9.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / sqlclient-pr (Test: windows_net462 sqlclient_manual_azure_123_windows_net462)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --collect "Code coverage" --settings "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/CodeCoverage.runsettings" --filter "category!=failing&category!=flaky&category!=interactive&category!=signed&(Set=1|Set=2|Set=3)" -f net462 --results-directory "D:\a\_work\1\s/test_results/windows_net462_sqlclient_manual_azure_123" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net462-123" " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19_x86 net9_0_AnyCPU_NativeSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "C:\x86\dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net9.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net9.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19_x86 net8_0_AnyCPU_NativeSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "C:\x86\dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net8.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net8.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25 net8_0_AnyCPU_ManagedSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net8.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net8.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25 net9_0_AnyCPU_NativeSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net9.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net9.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win11_ARM64_Azure_Sql net9_0_AnyCPU_NativeSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --collect "Code coverage" --settings "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/CodeCoverage.runsettings" --filter "category!=failing&category!=flaky&category!=interactive&category!=signed&(Set=3)" -f net9.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net9.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25 net9_0_AnyCPU_ManagedSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net9.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net9.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25_Named_Instance net8_0_AnyCPU_NativeSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net8.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net8.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25_Named_Instance net9_0_AnyCPU_NativeSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net9.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net9.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25_Named_Instance net9_0_AnyCPU_ManagedSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net9.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net9.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Ubuntu24_Azure_Sql net8_0_AnyCPU_ManagedSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "/mnt/vss/_work/1/s/src/../src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --collect "Code coverage" --settings "/mnt/vss/_work/1/s/src/../src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/CodeCoverage.runsettings" --filter "category!=failing&category!=flaky&category!=interactive&category!=signed&(Set=3)" -f net8.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Unix-net8.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19 net9_0_AnyCPU_NativeSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net9.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net9.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Azure_Sql net9_0_AnyCPU_ManagedSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --collect "Code coverage" --settings "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/CodeCoverage.runsettings" --filter "category!=failing&category!=flaky&category!=interactive&category!=signed&(Set=3)" -f net9.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net9.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Ubuntu24_Azure_Sql net9_0_AnyCPU_ManagedSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "/mnt/vss/_work/1/s/src/../src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net9.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Unix-net9.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19 net8_0_AnyCPU_NativeSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net8.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net8.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19 net9_0_AnyCPU_ManagedSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net9.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net9.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19 net8_0_AnyCPU_ManagedSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net8.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net8.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25_x86 net9_0_AnyCPU_NativeSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "C:\x86\dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net9.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net9.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25_Named_Instance net9_0_AnyCPU_NativeSNI_1)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --collect "Code coverage" --settings "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/CodeCoverage.runsettings" --filter "category!=failing&category!=flaky&category!=interactive&category!=signed&(Set=1)" -f net9.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net9.0-1" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25 net8_0_AnyCPU_NativeSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net8.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net8.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25_Named_Instance net8_0_AnyCPU_ManagedSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=3)" -f net8.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net8.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19 net8_0_AnyCPU_ManagedSNI_2)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky&(Set=2)" -f net8.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net8.0-2" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / sqlclient-pr

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --collect "Code coverage" --settings "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/CodeCoverage.runsettings" --filter "category!=failing&category!=flaky&category!=interactive&category!=signed&(Set=1|Set=2|Set=3)" -f net462 --results-directory "D:\a\_work\1\s/test_results/windows_net462_sqlclient_manual_azure_123" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net462-123" " exited with code 1.

Check failure on line 847 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win11_Azure_Sql net9_0_AnyCPU_ManagedSNI_3)

build.proj#L847

build.proj(847,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/ManualTests/Microsoft.Data.SqlClient.ManualTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --collect "Code coverage" --settings "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/tools/Microsoft.Data.SqlClient.TestUtilities/CodeCoverage.runsettings" --filter "category!=failing&category!=flaky&category!=interactive&category!=signed&(Set=3)" -f net9.0 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientManual-Windows_NT-net9.0-3" -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 " exited with code 1.
</Target>

<!-- TestSqlClientUnit: Runs unit tests for SqlClient -->
Expand Down Expand Up @@ -810,7 +873,7 @@
</PropertyGroup>
<Message Importance="High" Text=">>> Running unit tests for SqlClient"/>
<Message Text=" Command: $(DotnetCommand)"/>
<Exec ConsoleToMsBuild="true" Command="$(DotnetCommand)" />

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win11_ARM64_Azure_Sql net8_0_AnyCPU_NativeSNI_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net8.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net8.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win11_ARM64_Azure_Sql net462_AnyCPU_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net462 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net462" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win11_ARM64_Azure_Sql net9_0_AnyCPU_ManagedSNI_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net9.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net9.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win11_ARM64_Azure_Sql net462_AnyCPU_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net462 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net462" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win11_ARM64_Azure_Sql net8_0_AnyCPU_NativeSNI_3)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net8.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net8.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win11_ARM64_Azure_Sql net9_0_AnyCPU_NativeSNI_3)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net9.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net9.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Azure_Sql net8_0_AnyCPU_NativeSNI_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net8.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net8.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Azure_Sql net462_AnyCPU_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net462 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net462" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Ubuntu24_Azure_Sql net9_0_AnyCPU_ManagedSNI_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "/mnt/vss/_work/1/s/src/../src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net9.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Unix-net9.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Azure_Sql net462_AnyCPU_3)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net462 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net462" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19 net462_AnyCPU_3)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net462 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net462" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25 net462_AnyCPU_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net462 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net462" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Ubuntu24_Sql25 net9_0_AnyCPU_ManagedSNI_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "/mnt/vss/_work/1/s/src/../src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net9.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Unix-net9.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25 net8_0_AnyCPU_NativeSNI_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net8.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net8.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25 net462_AnyCPU_3)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net462 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net462" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25_Named_Instance net462_AnyCPU_3)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net462 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net462" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25 net9_0_AnyCPU_NativeSNI_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net9.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net9.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25_Named_Instance net9_0_AnyCPU_ManagedSNI_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net9.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net9.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19 net462_AnyCPU_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net462 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net462" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25_Named_Instance net9_0_AnyCPU_ManagedSNI_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net9.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net9.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25 net462_AnyCPU_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net462 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net462" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25_x86 net8_0_AnyCPU_NativeSNI_3)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "C:\x86\dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net8.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net8.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19 net9_0_AnyCPU_ManagedSNI_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net9.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net9.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25_x86 net8_0_AnyCPU_NativeSNI_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "C:\x86\dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net8.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net8.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25_x86 net8_0_AnyCPU_NativeSNI_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "C:\x86\dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net8.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net8.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19 net8_0_AnyCPU_NativeSNI_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net8.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net8.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19 net462_AnyCPU_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net462 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net462" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win25_Sql25_x86 net462_AnyCPU_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "C:\x86\dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net462 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net462" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19 net8_0_AnyCPU_NativeSNI_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net8.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net8.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19_x86 net462_AnyCPU_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "C:\x86\dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net462 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net462" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19_x86 net462_AnyCPU_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "C:\x86\dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net462 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net462" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19_x86 net8_0_AnyCPU_NativeSNI_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "C:\x86\dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net8.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net8.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19 net8_0_AnyCPU_ManagedSNI_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net8.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net8.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win11_Azure_Sql net8_0_AnyCPU_NativeSNI_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net8.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net8.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win22_Sql19 net9_0_AnyCPU_ManagedSNI_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net9.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net9.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win11_Azure_Sql net9_0_AnyCPU_NativeSNI_2)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net9.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net9.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (Win11_Azure_Sql net9_0_AnyCPU_NativeSNI_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "D:\a\_work\1\s\src\..\src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net9.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Windows_NT-net9.0" " exited with code 1.

Check failure on line 876 in build.proj

View check run for this annotation

Azure Pipelines / PR-SqlClient-Project (MacOSLatest_Sql25 net8_0_AnyCPU_ManagedSNI_1)

build.proj#L876

build.proj(876,5): Error MSB3073: The command " "dotnet" test "/Users/runner/work/1/s/src/../src/Microsoft.Data.SqlClient/tests/UnitTests/Microsoft.Data.SqlClient.UnitTests.csproj" -p:Configuration=Debug --blame-hang --blame-hang-dump-type full --blame-hang-timeout 10m --filter "category=flaky" -f net8.0 -p:SqlClientPackageVersion=7.1.0-preview3-pr.25125 -p:SqlServerPackageVersion=1.1.0-preview1-pr.25125 --results-directory "TestResults" --logger:"trx;LogFilePrefix=SqlClientUnit-Unix-net8.0" " exited with code 1.
</Target>

<!-- ================================================================= -->
Expand Down Expand Up @@ -839,6 +902,7 @@
$(BuildNumberArgument)
$(BuildSuffixArgument)
$(PackageVersionSqlClientArgument)
$(FileVersionSqlClientArgument)

<!-- Reference type arguments -->
$(ReferenceTypeArgument)
Expand Down Expand Up @@ -866,6 +930,7 @@
$(BuildNumberArgument)
$(BuildSuffixArgument)
$(PackageVersionSqlClientArgument)
$(FileVersionSqlClientArgument)

<!-- Reference Type Arguments -->
$(ReferenceTypeArgument)
Expand Down Expand Up @@ -946,6 +1011,7 @@
$(BuildNumberArgument)
$(BuildSuffixArgument)
$(PackageVersionSqlClientArgument)
$(FileVersionSqlClientArgument)

<!-- Reference Type Arguments -->
$(ReferenceTypeArgument)
Expand All @@ -972,6 +1038,7 @@
$(BuildNumberArgument)
$(BuildSuffixArgument)
$(PackageVersionSqlClientArgument)
$(FileVersionSqlClientArgument)

<!-- Reference Type Arguments -->
$(ReferenceTypeArgument)
Expand Down Expand Up @@ -1051,6 +1118,7 @@
$(BuildNumberArgument)
$(BuildSuffixArgument)
$(PackageVersionSqlClientArgument)
$(FileVersionSqlClientArgument)

<!-- Reference type arguments -->
$(ReferenceTypeArgument)
Expand All @@ -1077,6 +1145,7 @@
$(BuildNumberArgument)
$(BuildSuffixArgument)
$(PackageVersionSqlClientArgument)
$(FileVersionSqlClientArgument)

<!-- Reference Type Arguments -->
$(ReferenceTypeArgument)
Expand Down Expand Up @@ -1153,6 +1222,7 @@
$(BuildNumberArgument)
$(BuildSuffixArgument)
$(PackageVersionSqlClientArgument)
$(FileVersionSqlClientArgument)
</DotnetCommand>
<!-- Convert more than one whitespace character into one space -->
<DotnetCommand>$([System.Text.RegularExpressions.Regex]::Replace($(DotnetCommand), "\s+", " "))</DotnetCommand>
Expand All @@ -1176,6 +1246,7 @@
$(BuildNumberArgument)
$(BuildSuffixArgument)
$(PackageVersionSqlClientArgument)
$(FileVersionSqlClientArgument)
</DotnetCommand>
<!-- Convert more than one whitespace character into one space -->
<DotnetCommand>$([System.Text.RegularExpressions.Regex]::Replace($(DotnetCommand), "\s+", " "))</DotnetCommand>
Expand Down Expand Up @@ -1219,6 +1290,7 @@
$(BuildNumberArgument)
$(BuildSuffixArgument)
$(PackageVersionSqlServerArgument)
$(FileVersionSqlServerArgument)
</DotnetCommand>
<!-- Convert more than one whitespace character into one space -->
<DotnetCommand>$([System.Text.RegularExpressions.Regex]::Replace($(DotnetCommand), "\s+", " "))</DotnetCommand>
Expand All @@ -1242,6 +1314,7 @@
$(BuildNumberArgument)
$(BuildSuffixArgument)
$(PackageVersionSqlServerArgument)
$(FileVersionSqlServerArgument)
</DotnetCommand>
<!-- Convert more than one whitespace character into one space -->
<DotnetCommand>$([System.Text.RegularExpressions.Regex]::Replace($(DotnetCommand), "\s+", " "))</DotnetCommand>
Expand Down
Loading
Loading