Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for vcxproj (0.12 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/VisualStudioMultiProjectIntegrationTest.groovy

                ":two:twoDllVisualStudioFilters", ":two:twoDllVisualStudioProject",
                ":visualStudio")
    
            and:
            def appProject = projectFile("app.vcxproj")
            def oneProject = projectFile("one/one.vcxproj")
            def twoProject = projectFile("two/twoDll.vcxproj")
    
            final mainSolution = solutionFile("app.sln")
            mainSolution.assertHasProjects("app", "one", "twoDll")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

                    file("app.sln"),
                    file("exe/exe_mainExe.vcxproj"),
                    file("exe/exe_mainExe.vcxproj.filters"),
                    file("lib/lib_mainDll.vcxproj"),
                    file("lib/lib_mainDll.vcxproj.filters"),
                    file("lib/lib_mainDll.vcxproj"),
                    file("lib/lib_mainDll.vcxproj.filters")
            ]
            generatedFiles*.assertExists()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSingleProjectIntegrationTest.groovy

            run "visualStudio"
    
            then:
            result.assertTasksExecuted(":visualStudio", ":appVisualStudioSolution", getProjectTasks("app"))
    
            and:
            final projectFile = projectFile("app.vcxproj")
            projectFile.assertHasComponentSources(app, "src/main")
            projectFile.projectConfigurations.keySet() == projectConfigurations
            projectFile.projectConfigurations.values().each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            then:
            final exeProject = projectFile("mainExe.vcxproj")
            final helloDllProject = projectFile("helloDll.vcxproj")
            final helloLibProject = projectFile("helloDll.vcxproj")
            final greetDllProject = projectFile("greetingsLib.vcxproj")
            final greetLibProject = projectFile("greetingsLib.vcxproj")
            final mainSolution = solutionFile("app.sln")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  8. 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)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

            and:
            final solutionFile = solutionFile("foo.sln")
            solutionFile.assertReferencesProject(projectFile("app.vcxproj"), ["debug", "release"])
    
            when:
            buildFile << """
                visualStudio {
                    projects.all {
                        projectFile.location = file('foo.vcxproj')
                    }
                }
            """
            run "visualStudio"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. 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)
Back to top