Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for vcxproj (0.26 sec)

  1. platforms/ide/ide-native/src/main/resources/org/gradle/ide/visualstudio/tasks/internal/default.vcxproj

    Bálint Hegyi <******@****.***> 1695116871 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 662 bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/resources/org/gradle/ide/visualstudio/tasks/internal/default.vcxproj.filters

    Jocelyn Castellano <******@****.***> 1702796112 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:07 UTC 2023
    - 808 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/ide/visualStudio/groovy/build.gradle

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

            solutionFile.assertReferencesProject(projectFile("mainExe.vcxproj"), ["win32Debug", "win32Release", "x64Debug", "x64Release"])
    
            when:
            buildFile << """
                model {
                    visualStudio {
                        projects.all {
                            projectFile.location = file('foo.vcxproj')
                        }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/visual_studio_plugin.adoc

    +
    Generates the `.vcxproj` file for the application component.
    
    `__projectName__VisualStudioFilters` — link:{groovyDslPath}/org.gradle.ide.visualstudio.tasks.GenerateFiltersFileTask.html[GenerateFiltersFileTask]::
    +
    Generates the `.vcxproj.filters` file for the application component.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top