﻿pipeline {
    agent {
        node {
            label 'Jenkins_Homer'
        }
    }  
    stages {
        stage('Build') {
            steps {                                 
                  bat "\"${tool 'MSBuild15'}\" ${WORKSPACE}\\WOLWin_nightly\\WOLWin\\WOLWin.csproj /t:Restore /t:Rebuild /p:Configuration=Release"
                  }
						}	
        }        
    } 