Skip to content
This repository has been archived by the owner on Sep 24, 2021. It is now read-only.

Added mono #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitpod
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
image:
file: Dockerfile
ports:
- port: 3000
protocol: "http"
Expand Down
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM gitpod/workspace-full:latest

USER root
# comment
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF \
&& echo "deb https://download.mono-project.com/repo/ubuntu stable-bionic main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list \
&& apt update \
&& apt-get update \
&& apt-get install -y mono-devel \
&& apt-get clean && rm -rf /var/cache/apt/* && rm -rf /var/lib/apt/lists/* && rm -rf /tmp/*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# C# Extension For Theia
[![Gitpod - Code Now](https://img.shields.io/badge/Gitpod-Code%20Now-blue.svg?longCache=true)](https://gitpod.io#https://github.com/theia-ide/theia-csharp-extension)

Adds C# language support to the Theia IDE.
Adds C# language support to the Theia IDE. Powered by omnisharp.

## Getting started

Expand Down