Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,340 for msbuild (0.15 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/MSBuildVersionLocator.java

            } else if (vsVersion.getMajor() == 11) {
                msbuild = new TestFile("C:/Windows/Microsoft.Net/Framework/v4.0.30319/MSBuild.exe");
            } else {
                msbuild = new TestFile("C:/program files (x86)/MSBuild/" + vsVersion.getMajor() + ".0/Bin/MSBuild.exe");
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/AbstractVisualStudioIntegrationSpec.groovy

            // When this happens, it seems like tests using msbuild are slow or hanging (>10 minutes instead of 30 seconds).
            // The msbuild behavior occurs because we capture the stdout/stderr from Gradle instead of letting msbuild collect it and fork the daemon child process.
            // We direct the output because msbuild jumbles up stdout/stderr in ways that mess up our output scraping.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/main/resources/org/gradle/ide/visualstudio/tasks/internal/default.vcxproj

    <?xml version="1.0" encoding="utf-8"?>
    <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
      <ItemGroup Label="ProjectConfigurations"/>
      <PropertyGroup Label="Globals">
        <Keyword>MakeFileProj</Keyword>
      </PropertyGroup>
      <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
      <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
      <PropertyGroup Label="UserMacros" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 662 bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/resources/org/gradle/ide/visualstudio/tasks/internal/default.vcxproj.filters

    <?xml version="1.0" encoding="utf-8"?>
    <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
        <ItemGroup Label="Filters">
          <Filter Include="Source Files">
            <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
          </Filter>
          <Filter Include="Header Files">
            <!-- if you would like to add more endings to this pattern, make sure to also edit DefaultCppLibrary.java and DefaultCppComponent.java-->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:07 UTC 2023
    - 808 bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/NativeIdeSamplesIntegrationTest.groovy

        }
    
        @Requires(IntegTestPreconditions.HasMsBuild)
        @ToBeFixedForConfigurationCache
        def "build generated visual studio solution"() {
            useMsbuildTool()
    
            given:
            sample visualStudio
            run "visualStudio"
    
            when:
            def resultDebug = msbuild
                .withWorkingDir(visualStudio.dir)
    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/software/platform-base/src/test/groovy/org/gradle/api/plugins/DefaultBasePluginConventionTest.groovy

            extension.libsDirectory.getAsFile().get() == project.file('mybuild/mylibs')
        }
    
        def "dirs are cached properly"() {
            when:
            project.buildDir = project.file('mybuild')
            convention.distsDirName = 'mydists'
    
            then:
            convention.distsDirectory.getAsFile().get() == project.file('mybuild/mydists')
            extension.distsDirectory.getAsFile().get() == project.file('mybuild/mydists')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. testing/integ-test/src/integTest/groovy/org/gradle/integtests/MultiProjectDependencyIntegrationTest.groovy

            when:
            run ':c:build'
    
            then:
            jarsBuilt 'a', 'b', 'c'
            depsCopied 'a', []
            depsCopied 'b', []
            depsCopied 'c', ['a', 'b']
        }
    
        def "project dependency c->b->a"() {
    
            projectDependency from: 'c', to: ['b']
            projectDependency from: 'b', to: ['a']
    
            when:
            run ':c:build'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/CrossProcessFileLockIntegrationTest.groovy

            then:
            def handle1 = executer.withArguments(':a:build', '-i').start()
            poll(120) {
                assert handle1.standardOutput.contains('waiting for file...')
            }
            //first build is waiting for file, so the lock should be releasable now (for example: the task history lock)
    
            and:
            def handle2 = executer.withArguments('b:build', '-is').start()
            handle2.waitForFinish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/go/printer/gobuild.go

    	// use that point instead. (Earlier in the file is always fine.)
    	if len(p.goBuild) > 0 && p.goBuild[0] < insert {
    		insert = p.goBuild[0]
    	} else if len(p.plusBuild) > 0 && p.plusBuild[0] < insert {
    		insert = p.plusBuild[0]
    	}
    
    	var x constraint.Expr
    	switch len(p.goBuild) {
    	case 0:
    		// Synthesize //go:build expression from // +build lines.
    		for _, pos := range p.plusBuild {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. pkg/registry/rbac/validation/policy_compact_test.go

    				{Verbs: []string{"list"}, APIGroups: []string{""}, Resources: []string{"builds"}, ResourceNames: []string{"mybuild2"}},
    			},
    			Expected: []rbacv1.PolicyRule{
    				{Verbs: []string{"get"}, APIGroups: []string{""}, Resources: []string{"builds"}, ResourceNames: []string{"mybuild"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 9.5K bytes
    - Viewed (0)
Back to top