File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Qase.Csharp.Commons/Utils Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11<Project >
22 <!-- Metadata -->
33 <PropertyGroup >
4- <Version >1.0.17 </Version >
4+ <Version >1.0.18 </Version >
55 <Copyright >Copyright (c) 2025 Qase</Copyright >
66 <Authors >Qase Team</Authors >
77 <Company >qase.io</Company >
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public static string BuildXClientHeader(
3838
3939 if ( ! string . IsNullOrWhiteSpace ( reporterVersion ) )
4040 {
41- parts . Add ( $ "reporter_version=v { FormatVersion ( reporterVersion ! ) } ") ;
41+ parts . Add ( $ "reporter_version={ FormatVersion ( reporterVersion ! ) } ") ;
4242 }
4343
4444 // Add framework information
@@ -55,18 +55,18 @@ public static string BuildXClientHeader(
5555 // Add client versions
5656 if ( ! string . IsNullOrWhiteSpace ( apiClientV1Version ) )
5757 {
58- parts . Add ( $ "client_version_v1=v { FormatVersion ( apiClientV1Version ! ) } ") ;
58+ parts . Add ( $ "client_version_v1={ FormatVersion ( apiClientV1Version ! ) } ") ;
5959 }
6060
6161 if ( ! string . IsNullOrWhiteSpace ( apiClientV2Version ) )
6262 {
63- parts . Add ( $ "client_version_v2=v { FormatVersion ( apiClientV2Version ! ) } ") ;
63+ parts . Add ( $ "client_version_v2={ FormatVersion ( apiClientV2Version ! ) } ") ;
6464 }
6565
6666 // Add commons version
6767 if ( ! string . IsNullOrWhiteSpace ( commonsVersion ) )
6868 {
69- parts . Add ( $ "core_version=v { FormatVersion ( commonsVersion ! ) } ") ;
69+ parts . Add ( $ "core_version={ FormatVersion ( commonsVersion ! ) } ") ;
7070 }
7171
7272 return string . Join ( ";" , parts ) ;
You can’t perform that action at this time.
0 commit comments