Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getRootProjectName (0.2 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/AbstractXcodeIntegrationSpec.groovy

        def setup() {
            buildFile << """
    allprojects {
        apply plugin: 'xcode'
    }
    """
            settingsFile << """
    rootProject.name = "${rootProjectName}"
    """
        }
    
        protected String getRootProjectName() {
            'app'
        }
    
        protected NativeBinaryFixture fixture(String path) {
            fixture(file(path))
        }
    
        protected NativeBinaryFixture fixture(TestFile binary) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

            projectFile.projectConfigurations['debug'].languageStandard == null
            projectFile.projectConfigurations['release'].languageStandard == null
        }
    
        String getRootProjectName() {
            return "app"
        }
    
        SolutionFile getSolutionFile() {
            return solutionFile("${rootProjectName}.sln")
        }
    
        ProjectFile getProjectFile() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/BaseGradleRunnerIntegrationTest.groovy

            requireIsolatedTestKitDir ? file("test-kit-workspace") : buildContext.gradleUserHomeDir
        }
    
        TestFile getProjectDir() {
            temporaryFolder.testDirectory
        }
    
        String getRootProjectName() {
            testDirectory.name
        }
    
        GradleRunner runner(List<String> arguments) {
            runner(arguments as String[])
        }
    
        GradleRunner runner(String... arguments) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top