Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for ProjectFile (0.18 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/VisualStudioProject.java

     * <pre class='autoTested'>
     *  plugins {
     *      id 'cpp'
     *      id 'visual-studio'
     *  }
     *
     *  model {
     *      visualStudio {
     *          projects.all {
     *              projectFile.location = "vs/${name}.vcxproj"
     *              projectFile.withXml {
     *                  asNode().appendNode('PropertyGroup', [Label: 'Custom'])
     *                          .appendNode('ProjectDetails', "Project is named ${project.name}")
     *              }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/ide/visualStudio/groovy/build.gradle

        solution {
            solutionFile.location = file('solution.sln')
        }
    }
    // end::configure-solution-location[]
    
    // tag::configure-project-and-filters-location[]
    visualStudio {
        projects.all {
            projectFile.location = file('project.vcxproj')
            filtersFile.location = file('project.vcxproj.filters')
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 508 bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/AbstractXcodeIntegrationSpec.groovy

        }
    
        void assertTargetIsUnitTest(ProjectFile.PBXTarget target, String expectedProductName) {
            target.assertIsUnitTest()
            target.assertProductNameEquals(expectedProductName)
            assert target.name == "$expectedProductName"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ide/visualStudio/kotlin/build.gradle.kts

        solution {
            solutionFile.setLocation(file("solution.sln"))
        }
    }
    // end::configure-solution-location[]
    
    // tag::configure-project-and-filters-location[]
    visualStudio {
        projects.all {
            projectFile.setLocation(file("project.vcxproj"))
            filtersFile.setLocation(file("project.vcxproj.filters"))
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 510 bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeCppApplicationProjectIntegrationTest.groovy

            rootXcodeWorkspace.contentFile
                    .assertHasProjects("${rootProjectName}.xcodeproj", 'app/app.xcodeproj', 'greeter/greeter.xcodeproj')
    
            def project = xcodeProject("app/app.xcodeproj").projectFile
            project.indexTarget.getBuildSettings().HEADER_SEARCH_PATHS == toSpaceSeparatedList(file("app/src/main/headers"))
            // TODO: HEADER_SEARCH_PATHS should contains file("greeter/src/main/public")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java

    /**
     * Builds in-memory descriptions of projects.
     */
    public interface ProjectBuilder {
    
        /**
         * Builds a project descriptor from the specified POM file.
         *
         * @param projectFile The POM file to build the project from, must not be {@code null}.
         * @param request The project building request that holds further parameters, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftApplicationProjectIntegrationTest.groovy

            rootXcodeWorkspace.contentFile
                    .assertHasProjects("${rootProjectName}.xcodeproj", 'app/app.xcodeproj', 'greeter/greeter.xcodeproj')
    
            def project = xcodeProject("app/app.xcodeproj").projectFile
            project.indexTarget.getBuildSettings().SWIFT_INCLUDE_PATHS == null
            // TODO: SWIFT_INCLUDE_PATHS should contains ("greeter/build/modules/main/debug")
    
            when:
            def resultApp = xcodebuild
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.ide.visualstudio.VisualStudioProject.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>projectFile</td>
                </tr>
                <tr>
                    <td>filtersFile</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/AbstractXcodeCppProjectIntegrationTest.groovy

    abstract class AbstractXcodeCppProjectIntegrationTest extends AbstractXcodeNativeProjectIntegrationTest {
        @Override
        protected void assertXcodeProjectSources(List<String> rootChildren) {
            def project = rootXcodeProject.projectFile
            project.mainGroup.assertHasChildren(rootChildren + ['Sources', 'Headers'])
            project.sources.assertHasChildren(componentUnderTest.sources.files*.name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/project/inheritance/t00/ProjectInheritanceTest.java

        //
        // ----------------------------------------------------------------------
    
        @Test
        void testProjectInheritance() throws Exception {
            MavenProject p4 = getProject(projectFile("p4"));
    
            assertEquals("p4", p4.getName());
    
            // ----------------------------------------------------------------------
            // Value inherited from p3
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top