You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Description>The Common libraries for SqlAppLockHelper; a library for easily using Sql Server built in support for robust distributed mutex applicaiton locking capabilities. You should install SqlAppLockHelper.SystemData or SqlAppLockHelper.MicrosoftData depending on which SqlClient liberaries are in use in your project.</Description>
<PackageReleaseNotes>- Improve stability for Disposing, removing unnecessary exception warnings as locks are released when Connections are disposed/closed. Added explicit Release() & ReleaseAsync() methods, updated tests, and added Timespan for easily tracking lock time.
3
+
<PropertyGroup>
4
+
<TargetFramework>netstandard2.1</TargetFramework>
5
+
<PackageId>SqlAppLockHelper.Common</PackageId>
6
+
<Version>1.0.2</Version>
7
+
<Authors>BBernard / CajunCoding</Authors>
8
+
<Company>CajunCoding</Company>
9
+
<Product>SqlAppLockHelper</Product>
10
+
<Description>The Common libraries for SqlAppLockHelper; a library for easily using Sql Server built in support for robust distributed mutex applicaiton locking capabilities. You should install SqlAppLockHelper.SystemData or SqlAppLockHelper.MicrosoftData depending on which SqlClient liberaries are in use in your project.</Description>
- Added automatic tracking of Lock Acquisition Wait time in addition to the actual Lock hold elapsed time so it's easy to now see how long the process actually waited in line to get the lock.
18
+
- Enhnace to automatically apply Lock Acquisition Wait time to Sql Command Timeout (if not explicitly set).
19
+
- This helps simplify and reduce risk of incorrect use with Sql Command timeout failing before Lock Wait period is over.
16
20
17
-
Prior Release Notes:
18
-
- Initial release of Async/Sync support for System.Data & Microsoft.Data namespace.</PackageReleaseNotes>
19
-
<Version>1.0.1</Version>
20
-
</PropertyGroup>
21
+
Prior Release Notes:
22
+
- Improve stability for Disposing, removing unnecessary exception warnings as locks are released when Connections are disposed/closed. Added explicit Release() & ReleaseAsync() methods, updated tests, and added Timespan for easily tracking lock time.
23
+
- Initial release of Async/Sync support for System.Data & Microsoft.Data namespace.
0 commit comments