diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..0049aff --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,14 @@ +pipeline { + agent any + tools { + dotnetsdk 'dotnet6' + } + stages { + stage('Build') { + steps { + echo 'Building..' + sh 'dotnet publish --configuration Release --output PUBLISH' + } + } + } +} \ No newline at end of file diff --git a/directors-assistant.csproj b/directors-assistant.csproj index a4ace44..65c2ff4 100644 --- a/directors-assistant.csproj +++ b/directors-assistant.csproj @@ -12,7 +12,7 @@ - +