Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MSBuildExecutor (0.22 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/MSBuildExecutor.java

        private String projectName;
    
        public MSBuildExecutor(TestFile workingDir, AvailableToolChains.InstalledToolChain toolChain) {
            this.workingDir = workingDir;
            this.toolChain = toolChain;
        }
    
        public MSBuildExecutor withWorkingDir(TestFile workingDir) {
            this.workingDir = workingDir;
            return this;
        }
    
        public MSBuildExecutor withSolution(SolutionFile visualStudioSolution) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/AbstractVisualStudioIntegrationSpec.groovy

            }
            return file('gradlew')
        }
    
        protected MSBuildExecutor getMsbuild() {
            // Gradle needs to be isolated so that msbuild does not leave behind daemons
            assert executer.distribution.gradleHomeDir != null
            assert !executer.usesSharedDaemons()
            def executer = new MSBuildExecutor(testDirectory, toolChain)
            executer.withArgument('/p:Platform=Win32')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top