-
Notifications
You must be signed in to change notification settings - Fork 294
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve configurable retry logic tests (#1026)
- Loading branch information
1 parent
5f171ae
commit 9b4cf94
Showing
11 changed files
with
230 additions
and
197 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
24 changes: 24 additions & 0 deletions
24
...crosoft.Data.SqlClient/tests/CustomConfigurableRetryLogic/CustomRetryLogicProvider.csproj
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<AssemblyName>ExternalConfigurableRetryLogic</AssemblyName> | ||
<TargetGroup Condition="$(TargetFramework.StartsWith('net4'))">netfx</TargetGroup> | ||
<TargetGroup Condition="$(TargetGroup) == ''">netcoreapp</TargetGroup> | ||
<OSGroup Condition="'$(OSGroup)' == ''">$(OS)</OSGroup> | ||
<TargetsWindows Condition="'$(OSGroup)'=='Windows_NT'">true</TargetsWindows> | ||
<TargetsUnix Condition="'$(OSGroup)'=='Unix'">true</TargetsUnix> | ||
<EnableDefaultCompileItems>false</EnableDefaultCompileItems> | ||
<Configurations>Debug;Release;net461-Release;net461-Debug;netcoreapp2.1-Debug;netcoreapp2.1-Release;netcoreapp3.1-Debug;netcoreapp3.1-Release</Configurations> | ||
<Platforms>AnyCPU;x86;x64</Platforms> | ||
<IntermediateOutputPath>$(ObjFolder)$(Configuration).$(Platform).$(AssemblyName)</IntermediateOutputPath> | ||
<OutputPath>$(BinFolder)$(Configuration).$(Platform).$(AssemblyName)</OutputPath> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="CustomConfigurableRetryLogic.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Condition="'$(TargetGroup)'=='netcoreapp' AND $(ReferenceType)=='Project'" Include="$(NetCoreSource)src\Microsoft.Data.SqlClient.csproj" /> | ||
<ProjectReference Condition="'$(TargetGroup)'=='netfx' AND $(ReferenceType)=='Project'" Include="$(NetFxSource)src\Microsoft.Data.SqlClient.csproj" /> | ||
<ProjectReference Condition="$(ReferenceType.Contains('NetStandard'))" Include="$(TestsPath)NSLibrary\Microsoft.Data.SqlClient.NSLibrary.csproj" /> | ||
<PackageReference Condition="$(ReferenceType)=='Package'" Include="Microsoft.Data.SqlClient" Version="$(TestMicrosoftDataSqlClientVersion)" /> | ||
</ItemGroup> | ||
</Project> |
This file contains 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
Oops, something went wrong.