$(MSBuildProjectDirectory)\..\
        
        false
        
        false
        
        true
        
        false
    
    
        
        
        
    
    
        
        $([System.IO.Path]::Combine($(SolutionDir), ".nuget"))
        $([System.IO.Path]::Combine($(ProjectDir), "packages.config"))
    
    
        
        $(SolutionDir).nuget
        $(ProjectDir)packages.config
    
    
        
        $(NuGetToolsPath)\NuGet.exe
        @(PackageSource)
        "$(NuGetExePath)"
        mono --runtime=v4.0.30319 $(NuGetExePath)
        $(TargetDir.Trim('\\'))
        -RequireConsent
        -NonInteractive
        
        $(NuGetCommand) install "$(PackagesConfig)" -source "$(PackageSources)"  $(NonInteractiveSwitch) $(RequireConsentSwitch) -solutionDir "$(SolutionDir)\" 
        $(NuGetCommand) pack "$(ProjectPath)" -Properties Configuration=$(Configuration) $(NonInteractiveSwitch) -OutputDirectory "$(PackageOutputDir)" -symbols
        
        
            RestorePackages;
            $(BuildDependsOn);
        
        
        
            $(BuildDependsOn);
            BuildPackage;