Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for vcxproj (0.21 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioFileCustomizationIntegrationTest.groovy

            buildFile << '''
        model {
            visualStudio {
                projects.all { project ->
                    projectFile.location = "very/deeply/nested/${project.name}.vcxproj"
                    filtersFile.location = "other/filters.vcxproj.filters"
                }
                solution {
                    solutionFile.location = "vs/${it.name}.solution"
                }
            }
        }
    '''
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/ide/visualStudio/kotlin/build.gradle.kts

        }
    }
    // 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)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioCompositeBuildIntegrationTest.groovy

                ":visualStudio")
    
            and:
            def oneProject = projectFile("one/one.vcxproj")
            def twoProject = projectFile("two/twoDll.vcxproj")
            def utilProject = projectFile("util/utilDll.vcxproj")
            def otherProject = projectFile("other/other.vcxproj")
    
            final mainSolution = solutionFile("app.sln")
            mainSolution.assertHasProjects("one", "twoDll", "utilDll", "other")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/visual-studio/groovy/build.gradle

        id 'visual-studio'
    }
    // end::apply-plugin[]
    
    // tag::configure-locations[]
    model {
        visualStudio {
            projects.all {
                projectFile.location = "vs/${name}.vcxproj"
                filtersFile.location = "vs/${name}.vcxproj.filters"
            }
            solution {
                solutionFile.location = "vs/${name}.sln"
            }
        }
    }
    // end::configure-locations[]
    
    // tag::customize-project-files[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/NativeIdeSamplesIntegrationTest.groovy

            final dllProjectFile = projectFile(visualStudio.dir.file("vs/helloDll.vcxproj"))
            dllProjectFile.projectXml.PropertyGroup.find({it.'@Label' == 'Custom'}).ProjectDetails[0].text() == "Project is named helloDll"
    
            final libProjectFile = projectFile(visualStudio.dir.file("vs/helloLib.vcxproj"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/DefaultVisualStudioProjectTest.groovy

        }
    
        def "names"() {
            final projectFile = new File("project")
            final filtersFile = new File("filters")
            when:
            fileResolver.resolve("projectName.vcxproj") >> projectFile
            fileResolver.resolve("projectName.vcxproj.filters") >> filtersFile
    
            then:
            vsProject.name == "projectName"
            vsProject.projectFile.location == projectFile
            vsProject.filtersFile.location == filtersFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/DefaultVisualStudioProject.java

            this.projectFile = objectFactory.newInstance(DefaultConfigFile.class, fileResolver, getName() + ".vcxproj");
            this.filtersFile = objectFactory.newInstance(DefaultConfigFile.class, fileResolver, getName() + ".vcxproj.filters");
            this.sourceFiles = objectFactory.fileCollection().from(providerFactory.provider(() -> {
                Set<File> allSourcesFromBinaries = new LinkedHashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. 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)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiBuildIntegrationTest.groovy

        }
    
        @Override
        ProjectFile project(TestFile projectDir, String ideProjectName) {
            return new ProjectFile(projectDir.file(ideProjectName + "Dll.vcxproj"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioFiltersFile.groovy

            super(xmlTransformer)
            this.fileLocationResolver = fileLocationResolver
        }
    
        protected String getDefaultResourceName() {
            'default.vcxproj.filters'
        }
    
        def addSource(File sourceFile) {
            sources.appendNode("ClCompile", [Include: toPath(sourceFile)]).appendNode('Filter', 'Source Files')
        }
    
        def addHeader(File headerFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top