File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 77 branches : master
88
99env :
10- NUGETTOKEN : ${{ secrets.NUGETTOKEN }}
10+ NUGETTOKEN : ${{ secrets.NUGET_TOKEN }}
1111 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
1212 SCRIPTS_BASE_URL : https://raw.githubusercontent.com/linksplatform/Scripts/master/MultiProjectRepository
1313
Original file line number Diff line number Diff line change 1111 </ItemGroup >
1212
1313 <ItemGroup >
14- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 16.6 .1" />
14+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 16.7 .1" />
1515 <PackageReference Include =" xunit" Version =" 2.4.1" />
16- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.2 " PrivateAssets =" All" />
16+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.4.3 " PrivateAssets =" All" />
1717 <PackageReference Include =" coverlet.collector" Version =" 1.3.0" PrivateAssets =" All" />
1818 </ItemGroup >
1919
Original file line number Diff line number Diff line change @@ -137,11 +137,11 @@ public static int GetLowestPosition(ulong value)
137137 /// </typeparam>
138138 /// <param name="x">
139139 /// <para>The number on which the left bitwise shift operation will be performed.</para>
140- /// <para>Число над которым будет производиться операция пиботового смещения влево.<para>
140+ /// <para>Число над которым будет производиться операция пиботового смещения влево.</ para>
141141 /// </param>
142142 /// <param name="y">
143143 /// <para>The number of bits to shift.</para>
144- /// <para>Количество бит на которые выполнить смещение.<para>
144+ /// <para>Количество бит на которые выполнить смещение.</ para>
145145 /// </param>
146146 /// <returns>
147147 /// <para>The value with discarded high-order bits that are outside the range of the number type and set low-order empty bit positions to zero.</para>
@@ -160,15 +160,15 @@ public static int GetLowestPosition(ulong value)
160160 /// </typeparam>
161161 /// <param name="x">
162162 /// <para>The number on which the right bitwise shift operation will be performed.</para>
163- /// <para>Число над которым будет производиться операция побитового смещения вправо.<para>
163+ /// <para>Число над которым будет производиться операция побитового смещения вправо.</ para>
164164 /// </param>
165165 /// <param name="y">
166166 /// <para>The number of bits to shift.</para>
167- /// <para>Количество бит на которые выполнить смещение.<para>
167+ /// <para>Количество бит на которые выполнить смещение.</ para>
168168 /// </param>
169169 /// <returns>
170170 /// <para>The value with discarded low-order bits.</para>
171- /// <para>Значение с отброшенными младшими битами</para>
171+ /// <para>Значение с отброшенными младшими битами. </para>
172172 /// </returns>
173173 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
174174 public static T ShiftRight < T > ( T x , int y ) => Bit < T > . ShiftRight ( x , y ) ;
You can’t perform that action at this time.
0 commit comments