Andre Mohren

Results 106 comments of Andre Mohren

Got any contact information for me, to provide you a code share?

I managed to reproduce it on a small scale test project: [H5Test.zip](https://github.com/theolivenbaum/h5/files/5450915/H5Test.zip) Both Windows 10 and Ubuntu 20.10 produce the same error.

Ongoing from #25: Above error is gone, but now the following error occurs: ``` H5 : error H5003: Invalid static method invocation syntax: "[MSBuild]::GetTargetFrameworkVersion('$(TargetFramework)', 2)". Method '[MSBuild]::GetTargetFrameworkVersion' not found. Static...

What i have written against bridge originally is the following setup: - Ui.Core - netstandard2.0 gl gui library. Instead of calling gl methods, it defines an IGlContext interface. - Ui.Desktop...

It lies within the production palette code. It does not support -highlighted or such suffixes. Only the clock to be rendered on top. Thats not a big issue, but requires...

Any reason to not already port to .net7 then? Its unlikely this project gets released before .net7 anway?

While quite useful, i still see a problem when going for the spawn possition. Especialy when your base has moved to another side. I did a similar approach here: https://github.com/IceReaper/KKnD/blob/master/OpenRA.Mods.Kknd/Traits/Production/AdvancedAirstrikePower.cs...

Joining in. We are using Nullable features for all our projects since quite a while. Just started to dig into linq2db as a slim alternative to entity framework core. However...

The current approach is: ```csharp case "tinyint": { var size = precision > 0 ? precision : length; if (columnType == "tinyint(1)" || size == 1) return typeof(bool); return columnType?.Contains("unsigned")...

We cannot use any CLI stuff in our application workflow. Can we somehow specify that in this particular usecase? ```csharp await using var connection = new DataConnection(model.GetProviderName(), model.ToConnectionString()); await connection.EnsureConnectionAsync(cancellationToken);...