CI (Intégration continue)

Posted on sam. 24 novembre 2018 in Programmation • Tagged with dev, ci, tool

Travis-CI

Nom du fichier : .travis.yml

.NET

language: csharp
solution: solution.sln
install:
  - sudo apt-get install -y gtk-sharp2
  - nuget restore solution.sln
addons:
  sonarqube: true
env:
  global:
    secure: SONARQUBE_TOKEN_SECURE
script:
  - xbuild /p:Configuration=Release solution.sln
  - sonar-scanner -Dsonar.login=$SONAR_TOKEN

Ionic

sudo: false

language: node_js
node_js:
  - "0.12.2"

addons …

Continue reading

.net framework

Posted on sam. 24 novembre 2018 in Programmation • Tagged with langage, dev, .net, microsoft

Intégration des DLLs

Pré-requis

  • SmartAssembly : https://www.red-gate.com/products/dotnet-development/smartassembly/
  • .NET Framework 4.5.2 Developer Pack : https://www.microsoft.com/fr-fr/download/details.aspx?id=42637

Instructions

Lancez l'application. Vous aurez à sélectionner l'application dont vous désirez y ajouter les DLLs. Spécifiez ensuite le chemin de sorti …


Continue reading

Python

Posted on sam. 24 novembre 2018 in Programmation • Tagged with langage, dev, python

Python est un langage de programmation objet, multi-paradigme et multiplateformes. Il favorise la programmation impérative structurée, fonctionnelle et orientée objet. Il est doté d'un typage dynamique fort, d'une gestion automatique de la mémoire par ramasse-miettes et d'un système de gestion d'exceptions ; il est ainsi similaire à Perl, Ruby, Scheme, Smalltalk …


Continue reading

Bash

Posted on mer. 24 novembre 2010 in Programmation • Tagged with langage, bash, linux

Présentation

Bash (acronyme de Bourne-Again shell) est un interpréteur en ligne de commande de type script. C'est le shell Unix du projet GNU.

Fondé sur le Bourne shell, Bash lui apporte de nombreuses améliorations, provenant notamment du Korn shell et du C shell. Bash est un logiciel libre publié sous …


Continue reading