| Build Dotnet assemblies for M4 arm64 boxes. | DotNet | see build-dotnet.sh files | Set PlatformTarget to anycpu in the .csproj file or remove the property altogether.. | Edit
Delete |
| Add a package to the project from the cli. | DotNet | dotnet add package Restsharp | This example adds Restsharp to the project. | Edit
Delete |
| Push a nuget package to a local nuget server. | DotNet | dotnet nuget push -s http://nuc:5555/v3/index.json FlacUtils.1.0.0.nupkg -k Password you gave when setting up nuget server. | This example pushes a prebuilt nuget file to my local nuget server. | Edit
Delete |
| Create a nuget package from a Visual Studio project. | DotNet | dotnet pack FlacUtils.csproj -o .. | This example creates a file FlacUtils.1.0.0.nupkg - subsequent builds increment the version number.. | Edit
Delete |
| Install dotnet sdk and runtime on linux using a script. | DotNet | ./dotnet-install.sh --install-dir /usr/share/dotnet/ --channel 8.0. | This example installs dotnet 8 in the /usr/share/dotnet/ folder. | Edit
Delete |
| Install dotnet core framework from one machine to another. | DotNet | rsync -avh M4V201:/usr/share/dotnet/ /usr/share/dotnet. | Be mindful of the trailing back slash on the left hand part of the command and that both machines have the same architecture e.g aarch64.. | Edit
Delete |