File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net10.0</TargetFramework >
5- <IsPackable >false</IsPackable >
4+ <TargetFramework >net10.0</TargetFramework >
5+ <LangVersion >latest</LangVersion >
6+ <ImplicitUsings >enable</ImplicitUsings >
7+ <Nullable >enable</Nullable >
68 </PropertyGroup >
79
810 <ItemGroup >
9- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 18.0.1" />
10- <PackageReference Include =" MSTest.TestAdapter" Version =" 4.0.2" />
11- <PackageReference Include =" MSTest.TestFramework" Version =" 4.0.2" />
11+ <PackageReference Include =" MSTest" Version =" 4.0.2" />
1212 </ItemGroup >
1313
1414 <ItemGroup >
Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ public async Task _7_TestCancelSingle()
219219 var convertTask = aaxFile . ConvertToMp4aAsync ( tempfile ) ;
220220 convertTask . Start ( ) ;
221221
222- await Task . Delay ( 500 ) ;
222+ await Task . Delay ( 100 ) ;
223223 await convertTask . CancelAsync ( ) ;
224224
225225 await convertTask ;
@@ -250,7 +250,7 @@ void NewSplit(NewSplitCallback callback)
250250
251251 var convertTask = aaxFile . ConvertToMultiMp4aAsync ( Chapters , NewSplit ) ;
252252 convertTask . Start ( ) ;
253- await Task . Delay ( 500 ) ;
253+ await Task . Delay ( 100 ) ;
254254 await convertTask . CancelAsync ( ) ;
255255
256256 await convertTask ;
Original file line number Diff line number Diff line change 1+ [ assembly: DoNotParallelize ]
You can’t perform that action at this time.
0 commit comments