Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MSBuildVersionLocator (0.23 sec)

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

    import org.gradle.test.fixtures.file.TestFile;
    import org.gradle.util.internal.VersionNumber;
    
    import java.io.File;
    
    public class MSBuildVersionLocator {
        private final VswhereVersionLocator vswhereLocator;
    
        public MSBuildVersionLocator(VswhereVersionLocator vswhereLocator) {
            this.vswhereLocator = vswhereLocator;
        }
    
    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/MSBuildExecutor.java

                }
                result += action.toString();
            }
            return "/t:" + result;
        }
    
        private TestFile findMSBuild() {
            return new TestFile(new MSBuildVersionLocator(VisualStudioLocatorTestFixture.getVswhereLocator()).getMSBuildInstall(toolChain));
        }
    
        private static class ExecutionOutput {
            private final File stdout;
            private final File stderr;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top