Jonas Nyrup
Jonas Nyrup
Yes, removing the attributes from legacy projects before converting gives the intended csproj file without those nodes. The idea with this option was to avoid the manual work of removing...
@mungojam Sounds awesome, thanks for the heads up.
First of all thanks for raising this discussion. ## Topic 4: Logging Building on top of the suggestion by @Adhara3 here's a rough prototype of how the logging could be...
## Topic 4: Logging > I dislike "too many nuget packages" so would it cause any harm to add a direct dependency on [Microsoft.Extensions.Logging.Abstractions](https://www.nuget.org/packages/Microsoft.Extensions.Logging.Abstractions) ? In terms of functionality of...
## Topic 6: Target frameworks > I was aware of enterprises that find it harder to upgrade to newer .NET versions. What is your take on this? MS ended support...
From how I read the code you could probably target as few frameworks as `net50;netstandard2.0;netstandard2.1`. This code snippet currently distinguishes between .net frameworks and others, so if we need to...
> Hmmpf. One of my customers (Fortune 500) is still on 4.7.2 net472 can consume netstandard2.0 nuget packages. https://nugettools.azurewebsites.net/6.0.0/get-nearest-framework?project=net472&package=net50%0D%0Anetstandard2.0%0D%0Anetstandard2.1  > https://docs.microsoft.com/en-us/dotnet/standard/library-guidance/cross-platform-targeting#multi-targeting For increased compatibility with supported frameworks we could...
A net47 application will consume the net462 target. https://nugettools.azurewebsites.net/6.0.0/get-nearest-framework?project=net47&package=net50%0D%0Anetstandard2.0%0D%0Anetstandard2.1%0D%0Anet472%0D%0Anet462%0D%0Anet45
1) In `LogToDebugOrConsole` the debug part is inside `#if DEBUG` and as we all consume a _release_ mode of FluentFtp, it will effectively only be `LogToConsole`, i.e. no debugging part....
My comment was (probably) also meant as question/comment on why having all these logging knobs i FluentFTP. My line of thought is: FluentFtp has a piece of information and decides...