Mohamed Hassan

Results 60 comments of Mohamed Hassan

Thanks @andrew-boyarshin for reply. Here the project in the [attached file](https://github.com/hvanbakel/CsprojToVs2017/files/3967952/CommonComponents.zip) including .csproj and Packages.config

@mungojam The new style SDK projects (2017+) are using `PackageReference` and I think migration should insure converting package.config and drop any dll file (has hint path file) and have a...

@andrew-boyarshin Have a look to the hintPath: ```xml ..\..\..\packages\Autofac.4.2.1\lib\net45\Autofac.dll ``` The HintPath Point to folder in the format: ``` packages\.\lib\FFW\ ``` which insure that it's a package. In that case...

@mungojam Neither 1 nor 2 I used the wizard for a project in the folder without nuget.config. It seem that nuget.config is needed. It's nice if wiki documentation describe the...

>this issue should be considered a feature request, not a bug report @andrew-boyarshin You are correct. It should be a feature request. Some consideration may be taken into account: -...

A demo solution containing 3 projects as a [test case ](https://github.com/moh-hassan/Resources/blob/master/issues/CsprojToVs2017_224.rar?raw=true)to repro the warning

You are right. This project was initially migrated from the [source ](https://github.com/moh-hassan/Resources/blob/master/issues/demo.csproj?raw=true) and there was no warning from the `dotnet-migrate-2017`. In the second time when trying to migrate it again...

Can I know what is the valid expression of the `NotEqual`-related warning ? Is this because `BuildTarget` variable element isn't defined. fsharp

@andrew-boyarshin .Thanks for reply and explanation. Sure, as said by @hvanbakel for SDK projects -`We're intentionally not excluding them as we might be able to apply additional fixes with newer...

@JamesNK > Anything with span would wait until netstandard3.0 when the Span APIs are available. `Span.` [ref](https://docs.microsoft.com/en-us/dotnet/api/system.span-1?view=netstandard-2.1) and `ReadOnlySpan Struct` is available in [netstandrad2.1](https://docs.microsoft.com/en-us/dotnet/api/system.readonlyspan-1?view=netstandard-2.1) and .Net6 support Deserialize(ReadOnlySpan) [here]( https://docs.microsoft.com/en-us/dotnet/api/system.text.json.jsonserializer.deserialize?view=net-6.0#system-text-json-jsonserializer-deserialize(system-readonlyspan((system-char))-system-type-system-text-json-serialization-jsonserializercontext))...