-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpp_debian_build.tar
More file actions
28 lines (26 loc) · 10 KB
/
pp_debian_build.tar
File metadata and controls
28 lines (26 loc) · 10 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
install.sh 0000755 0001750 0001750 00000001211 14741354215 012136 0 ustar scott scott #!/bin/bash
wget https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
sudo apt-get update && \
sudo apt-get install -y dotnet-sdk-9.0
sudo apt-get install -y dotnet-runtime-9.0
sudo apt-get install -y git
sudo apt-get update
sudo apt-get upgrade
git clone https://github.com/SComps/ProjectPrinter.git
cd ProjectPrinter
mkdir build
sudo dotnet workload update
dotnet build /p:EnableWindowsTargeting=true
cp -rv ProjectPrinter/bin/Debug/net9.0/* build
cp -rv device_config/bin/Debug/net9.0/* build
cd ProjectPrinter/build