Cloud Compute Technical Documentation Example Plugins Current: DotNet plugin DotNet plugin Install DockerDesktopInstall VS CodeCreate a directory "exampleplugin"create a docker file with this content: FROM mcr.microsoft.com/dotnet/sdk:7.0 as devopen example plugin with vscodedownload remote development extension packopen in container (using remote extension pack)install c# dev kit extension for vs coderun command dotnet new consolecreate file nuget.configadd configuration for hec.dss and cc-dotnet-sdk<?xml version="1.0" encoding="utf-8"?><configuration> <packageSources> <add key="usace-cc-sdk" value="https://nuget.pkg.github.com/USACE/index.json" /> </packageSources> <packageSourceCredentials> <usace-cc-sdk> <add key="Username" value=<yourgithubusername> /> <add key="ClearTextPassword" value=<yourgithubclassictokenwithreadpackagepermission>/> </usace-cc-sdk> </packageSourceCredentials></configuration> ×