-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into quotations
- Loading branch information
Showing
543 changed files
with
73,262 additions
and
70,870 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM gitpod/workspace-full:latest | ||
|
||
USER root | ||
|
||
# Add here the instruction who needs root user | ||
|
||
|
||
USER gitpod | ||
|
||
# Install dotnet core | ||
ENV PATH=$HOME/.dotnet:$PATH | ||
RUN wget https://dotnetwebsite.azurewebsites.net/download/dotnet-core/scripts/v1/dotnet-install.sh && \ | ||
bash dotnet-install.sh -v 3.1.201 && \ | ||
rm -rf dotnet-install.sh; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.vscode/ | ||
.idea/ | ||
.ionide/ | ||
|
||
node_modules/ | ||
temp/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
image: | ||
file: .docker/Dockerfile | ||
|
||
tasks: | ||
- before: dotnet restore | ||
- init: npm install && npm run build compiler | ||
|
||
github: | ||
prebuilds: | ||
# enable for the master/default branch (defaults to true) | ||
master: true | ||
# enable for all branches in this repo (defaults to false) | ||
branches: false | ||
# enable for pull requests coming from this repo (defaults to true) | ||
pullRequests: true | ||
# enable for pull requests coming from forks (defaults to false) | ||
pullRequestsFromForks: true | ||
# add a check to pull requests (defaults to true) | ||
addCheck: true | ||
# add a "Review in Gitpod" button as a comment to pull requests (defaults to false) | ||
addComment: true | ||
# add a "Review in Gitpod" button to the pull request's description (defaults to false) | ||
addBadge: false | ||
# add a label once the prebuild is ready to pull requests (defaults to false) | ||
addLabel: false | ||
|
||
vscode: | ||
extensions: | ||
- [email protected]:QnOrf5fk6KiVaQs4cNEP+w== | ||
- [email protected]:8IqxuxCVol2WnScJc5xVzg== | ||
- [email protected]:/wXbNRm+2kunH5HbQqfnXA== | ||
- [email protected]:xeHlNzPEF04yFqz/xKCD5w== | ||
- [email protected]:0qxXuhq6eO066etkNQrKCQ== | ||
- [email protected]:jGTZwg0ChZg3eEKHC+UO+w== | ||
- [email protected]:zoSeoEOMfrwN0BMBC8VvqQ== | ||
- [email protected]:GNDO73Cmp0fYDiLNxVkbsQ== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,27 @@ | ||
language: csharp | ||
os: linux | ||
dist: trusty | ||
sudo: false | ||
dotnet: 2.1.403 | ||
dist: xenial | ||
sudo: required | ||
# dotnet: 3.1.201 | ||
mono: none | ||
|
||
# cache: | ||
# yarn: true | ||
|
||
addons: | ||
snaps: | ||
- name: dotnet-sdk | ||
classic: true | ||
channel: latest/stable | ||
|
||
before_script: | ||
- nvm install 10.15.0 | ||
- nvm use 10.15.0 | ||
- sudo snap alias dotnet-sdk.dotnet dotnet | ||
- nvm install node | ||
- nvm use node | ||
# # Update npm | ||
# - npm install -g npm | ||
|
||
script: | ||
- dotnet --version | ||
- node --version | ||
- npm install && npm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.svn": true, | ||
"**/.hg": true, | ||
"**/CVS": true, | ||
"**/.DS_Store": true, | ||
"**/bin": true, | ||
"**/obj": true, | ||
"**/.fake": true, | ||
"**/packages": true, | ||
"**/node_modules": true, | ||
"**/bower_components": true | ||
}, | ||
"files.trimTrailingWhitespace": true, | ||
"files.trimFinalNewlines": true, | ||
"gitlens.codeLens.enabled": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,22 +4,24 @@ init: | |
build: | ||
verbosity: detailed | ||
|
||
environment: | ||
nodejs_version: "10.15.0" | ||
# environment: | ||
# nodejs_version: "10.16.3" | ||
|
||
# cache: | ||
# - "%LOCALAPPDATA%\\Yarn" | ||
|
||
# Install scripts. (runs after repo cloning) | ||
install: | ||
# Get the latest stable version of .NET Core | ||
- cmd: choco install dotnetcore-sdk --no-progress | ||
# Get the latest stable version of Node.js | ||
- ps: Install-Product node $env:nodejs_version | ||
- ps: choco install nodejs --no-progress | ||
# # Update npm | ||
# # There seems to be issues with npm 5.4 in Windows | ||
# # See https://github.com/npm/npm/issues/18380 | ||
# - npm install -g [email protected] | ||
|
||
os: Visual Studio 2015 | ||
os: Visual Studio 2019 | ||
# before_build: | ||
# - cmd: set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH% | ||
build_script: | ||
|
Oops, something went wrong.