Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/GenerateProjectFileTask.java

            } else {
                return exe + " " + args.trim();
            }
    
        }
    
        @Input
        public String getGradleExe() {
            return gradleExe;
        }
    
        public void setGradleExe(String gradleExe) {
            this.gradleExe = gradleExe;
        }
    
        @Nullable
        @Optional
        @Input
        public String getGradleArgs() {
            return gradleArgs;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioFileCustomizationIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "can configure gradle command line"() {
            when:
            buildFile << """
    tasks.withType(GenerateProjectFileTask) {
        it.gradleExe "myCustomGradleExe"
        it.gradleArgs "--configure-on-demand --another"
    }
    """
            and:
            run "visualStudio"
    
            then:
            final projectFile = projectFile("mainExe.vcxproj")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top