├── .vscode ├── .gitignore ├── launch.json ├── settings.json-example └── tasks.json ├── Configure ├── SetRaspberryPiSettings.sh └── SetWifiSettings.sh ├── DotnetProjects ├── .gitignore ├── Blink │ ├── Blink.csproj │ └── Program.cs └── HelloWorld │ ├── HelloWorld.csproj │ └── Program.cs ├── Install ├── dotnetInstall.sh ├── modifySDCard.sh └── sshConfigure.sh ├── PiFiles ├── .gitignore ├── dotnet-exports.sh ├── piDotnetInstall.sh └── wpa_supplicant-template.conf └── Scripts └── publish.sh /.vscode/.gitignore: -------------------------------------------------------------------------------- 1 | settings.json 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/.vscode/settings.json-example -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Configure/SetRaspberryPiSettings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/Configure/SetRaspberryPiSettings.sh -------------------------------------------------------------------------------- /Configure/SetWifiSettings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/Configure/SetWifiSettings.sh -------------------------------------------------------------------------------- /DotnetProjects/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/DotnetProjects/.gitignore -------------------------------------------------------------------------------- /DotnetProjects/Blink/Blink.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/DotnetProjects/Blink/Blink.csproj -------------------------------------------------------------------------------- /DotnetProjects/Blink/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/DotnetProjects/Blink/Program.cs -------------------------------------------------------------------------------- /DotnetProjects/HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/DotnetProjects/HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /DotnetProjects/HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/DotnetProjects/HelloWorld/Program.cs -------------------------------------------------------------------------------- /Install/dotnetInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/Install/dotnetInstall.sh -------------------------------------------------------------------------------- /Install/modifySDCard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/Install/modifySDCard.sh -------------------------------------------------------------------------------- /Install/sshConfigure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/Install/sshConfigure.sh -------------------------------------------------------------------------------- /PiFiles/.gitignore: -------------------------------------------------------------------------------- 1 | dotnet-sdk-*.tar.gz 2 | -------------------------------------------------------------------------------- /PiFiles/dotnet-exports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/PiFiles/dotnet-exports.sh -------------------------------------------------------------------------------- /PiFiles/piDotnetInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/PiFiles/piDotnetInstall.sh -------------------------------------------------------------------------------- /PiFiles/wpa_supplicant-template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/PiFiles/wpa_supplicant-template.conf -------------------------------------------------------------------------------- /Scripts/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewrite/rPiSetup/HEAD/Scripts/publish.sh --------------------------------------------------------------------------------