Posted on Leave a comment

Nuget

[https://docs.microsoft.com/en-us/nuget/]

[https://docs.microsoft.com/ru-ru/nuget/consume-packages/managing-the-global-packages-and-cache-folders]


Command line [https://docs.nuget.org/consume/command-line-reference]

nuget locals all -list

nuget locals all -clear


Is it possible to change the location of packages for NuGet? [https://stackoverflow.com/questions/4092759/is-it-possible-to-change-the-location-of-packages-for-nuget]
nuget.config file next to the solution
<settings>
<repositoryPath>{some path here}</repositoryPath>
</settings>
or
<configuration>
<config>
<add key="repositoryPath" value="C:\thePathToMyPackagesFolder" />
</config>
...
</configuration>

Posted on Leave a comment

Xamarin misc

Docs [https://docs.microsoft.com/xamarin]

Github repos [https://github.com/xamarin]

Create custom view in Xamarin.Forms [https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/custom-renderer/view]

Create custom view in Xamarin.Android [https://medium.com/@mclint_/how-to-make-a-custom-view-in-xamarin-android-3d2dcb391936]

Xamarin.Android architecture [https://docs.microsoft.com/en-us/xamarin/android/internals/architecture]

Embed Flutter UI in existing Xamarin.iOS and Xamarin.Android apps [https://github.com/flutter/flutter/issues/15200]