Mikhail Nikitin
Mikhail Nikitin
## 🔙 Regression After fixing the project files to work with VS 2019 (use ``), I get the following errors about abstract methods: ``` ExoPlayerXamarin\ExoPlayer.SmoothStreaming\obj\Debug\monoandroid90\generated\src\Com.Google.Android.Exoplayer2.Source.Smoothstreaming.Offline.SsDownloadAction.cs(10,30,10,46): error CS0534: 'SsDownloadAction' does not...
Do you have some sample code on how to use `SsMediaSource`? I crafted this piece, but it does not start the playback. ``` var httpDataSourceFactory = new DefaultHttpDataSourceFactory("1"); var ssChunkFactory...
Looks like the current implementation checks the logging level one too many times. ``` public void Write(LogEventLevel level, string messageTemplate) { // Avoid the array allocation and any boxing allocations...
.NET Core 3 comes with a new JSON parser. I really don't want to use *Newtonsoft* alongside with it. Is there an API with e.g. a `string` instead of `JObject`?
I used to just execute the following command line to build _Bento4_ from _master_ branch: ``` cd .\Build\Targets\x86_64-microsoft-win32-vs2019 . "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe" .\Bento4.sln -p:Configuration=Release ``` Last time it...
When opening an ASIO control panel twice, the second time it produces an access violation exception. It cannot be caught by _Visual Studio_, so I had to use _windbg_ to...
IF there is a query error (e.g. quota exceeded), I see no way to run another query without closing Blender. Please report the error and add a new "query" line...
**Is your feature request related to a problem? Please describe.** I need to know whether the Nuget package I want to upload to Artifactory was actually uploaded, and fail the...
I am running VS 2022. I installed the old tools for VS 2017 compatibility (old Windows SDK and VC++ v141). I get an error: ``` cannot open source file "Setup.Configuration.h"...
**Describe the bug** An EFCore migration operation: ```csharp migrationBuilder.RenameColumn( name: "OutputPath", table: "Files", newName: "PR_OutputPath") .Annotation("MySql:CharSet", "utf8mb4"); ``` is converted to this SQL command: ```sql ALTER TABLE `Files` CHANGE `OutputPath`...