Esempio n. 1
0
 DotnetMSBuild(
     ProduceRepository repository,
     VisualStudioSolution sln,
     string target)
 {
     DotnetMSBuild(repository, sln, new [] { target });
 }
Esempio n. 2
0
        Build(ProduceRepository repository, string slnPath)
        {
            if (slnPath == null)
            {
                return;
            }

            var sln = new VisualStudioSolution(slnPath);

            var projs = FindLocalBuildableProjects(repository, sln);

            var frameworksByProj =
                projs.ToDictionary(p => p, p => p.GetProject().AllTargetFrameworks.ToList());

            var allFrameworks =
                frameworksByProj.Values
                .SelectMany(list => list)
                .Distinct();

            foreach (var framework in allFrameworks)
            {
                var projsTargetingThisFramework = projs.Where(p => frameworksByProj[p].Contains(framework)).ToList();
                Build(repository, sln, projsTargetingThisFramework, framework);
            }
        }
Esempio n. 3
0
        Build(
            ProduceRepository repository,
            VisualStudioSolution sln,
            IList <VisualStudioSolutionProjectReference> projs,
            string framework)
        {
            var properties = new Dictionary <string, String>()
            {
                { "TargetFramework", framework },
            };

            var targets = projs.Select(p => $"{p.MSBuildTargetName}:Publish");

            using (LogicalOperation.Start($"Building .NET for {framework}"))
            {
                var isNetFramework = Regex.IsMatch(framework, @"^net\d+$");

                if (isNetFramework && !CanBuildNetFramework)
                {
                    Trace.TraceInformation("This system can't build for .NET Framework");
                    return;
                }

                if (isNetFramework && BuildNetFrameworkUsingMSBuild)
                {
                    MSBuild(repository, sln, properties, targets);
                    return;
                }

                DotnetMSBuild(repository, sln, properties, targets);
            }
        }
Esempio n. 4
0
 RunCommands(ProduceRepository repository, IList <string> commands)
 {
     foreach (var command in commands)
     {
         RunCommand(repository, command);
     }
 }
Esempio n. 5
0
        DistFiles(ProduceRepository repository, IEnumerable <string> sourceDirs)
        {
            Guard.NotNull(repository, nameof(repository));
            Guard.NotNull(sourceDirs, nameof(sourceDirs));

            var destDir = repository.GetWorkSubdirectory("distfiles");

            if (Directory.Exists(destDir))
            {
                using (LogicalOperation.Start("Deleting " + destDir))
                    Directory.Delete(destDir, true);
            }

            if (!sourceDirs.Where(p => Directory.Exists(p)).Any())
            {
                return;
            }

            using (LogicalOperation.Start("Creating " + destDir))
                Directory.CreateDirectory(destDir);

            foreach (var sourceDir in sourceDirs.Where(d => Directory.Exists(d)))
            {
                using (LogicalOperation.Start("Copying distributable files from " + sourceDir))
                    foreach (var sourceFile in Directory.EnumerateFiles(sourceDir, "*", SearchOption.AllDirectories))
                    {
                        var localFile = sourceFile.Substring(sourceDir.Length + 1);
                        var destFile  = Path.Combine(destDir, localFile);
                        Trace.TraceInformation(destFile);
                        File.Copy(sourceFile, destFile);
                    }
            }
        }
Esempio n. 6
0
        MSBuild(
            ProduceRepository repository,
            VisualStudioSolution sln,
            IDictionary <string, string> properties,
            IEnumerable <string> targets)
        {
            Guard.NotNull(repository, nameof(repository));
            Guard.NotNull(sln, nameof(sln));
            Guard.NotNull(properties, nameof(properties));
            Guard.NotNull(targets, nameof(targets));

            var args = new List <string>()
            {
                "/nr:false",
                "/v:m",
            };

            args.AddRange(properties.Select(p => $"/p:{p.Key}=\"{p.Value}\""));
            args.AddRange(targets.Select(t => $"/t:{t}"));

            if (ProcessExtensions.ExecuteAny(true, true, repository.Path, "msbuild", args.ToArray()) != 0)
            {
                throw new UserException("Failed");
            }
        }
Esempio n. 7
0
        Attach(ProduceRepository repository, Graph graph)
        {
            Guard.NotNull(repository, nameof(repository));
            Guard.NotNull(graph, nameof(graph));

            var path = graph.List("dot-produce-path", repository.DotProducePath);

            var fileSet = graph.FileSet("dot-produce-fileset");

            graph.Dependency(path, fileSet);

            DotProduce dotProduce = new DotProduce();
            var        command    = graph.Command("dot-produce", _ => {
                var file = fileSet.Files.SingleOrDefault();
                if (file == null)
                {
                    return;
                }
                dotProduce = new DotProduce(file.Path);
            });

            graph.Dependency(fileSet, command);

            var programsList = graph.List("dot-produce-programs", target => dotProduce.Programs);

            graph.Dependency(command, programsList);
        }
Esempio n. 8
0
 FindLocalBuildableProjects(ProduceRepository repository, VisualStudioSolution sln) =>
 sln.ProjectReferences
 .Where(r =>
        r.TypeId == VisualStudioProjectTypeIds.CSharp ||
        r.TypeId == VisualStudioProjectTypeIds.CSharpNew)
 .Where(r => PathExtensions.IsDescendantOf(r.AbsoluteLocation, repository.Path))
 .ToList();
Esempio n. 9
0
 Update(ProduceRepository repository)
 {
     using (LogicalOperation.Start("Updating NuGit dependencies"))
         if (ProcessExtensions.ExecuteAny(true, true, repository.Path, "nugit", "update") != 0)
         {
             throw new UserException("nugit failed");
         }
 }
Esempio n. 10
0
 FindRepositories()
 {
     return
         (Directory.EnumerateDirectories(Path)
          .Where(path => ProduceRepository.IsRepository(path))
          .Select(path => new GitRepositoryName(IOPath.GetFileName(path)))
          .Select(name => new ProduceRepository(this, name)));
 }
Esempio n. 11
0
        DotnetMSBuild(
            ProduceRepository repository,
            VisualStudioSolution sln,
            IEnumerable <string> targets)
        {
            var properties = new Dictionary <string, string>();

            DotnetMSBuild(repository, sln, properties, targets);
        }
Esempio n. 12
0
        Dotnet(ProduceRepository repository, params string[] args)
        {
            Guard.NotNull(repository, nameof(repository));

            if (ProcessExtensions.ExecuteAny(true, true, repository.Path, "dotnet", args.ToArray()) != 0)
            {
                throw new UserException("Failed");
            }
        }
Esempio n. 13
0
        Attach(ProduceRepository repository, Graph graph)
        {
            Guard.NotNull(repository, nameof(repository));
            Guard.NotNull(graph, nameof(graph));

            var dotProducePrograms = graph.List("dot-produce-programs");
            var command            = graph.Command("programs", _ => GenerateProgramWrappers(repository, dotProducePrograms.Values));

            graph.Dependency(dotProducePrograms, command);
        }
Esempio n. 14
0
        Clean(ProduceRepository repository)
        {
            Guard.NotNull(repository, nameof(repository));
            var workDir = repository.WorkDirectory;

            if (Directory.Exists(workDir))
            {
                using (LogicalOperation.Start("Deleting " + workDir))
                    Directory.Delete(workDir, true);
            }
        }
Esempio n. 15
0
        Restore(ProduceRepository repository, string slnPath)
        {
            if (slnPath == null)
            {
                return;
            }

            var sln = new VisualStudioSolution(slnPath);

            using (LogicalOperation.Start("Restoring NuGet packages"))
                Dotnet(repository, "restore", sln);
        }
Esempio n. 16
0
        NugetPush(ProduceRepository repository, string nupkgPath)
        {
            Guard.NotNull(repository, nameof(repository));
            if (nupkgPath == null)
            {
                return;
            }

            using (LogicalOperation.Start("Publishing nupkg"))
            {
                Dotnet(repository, "nuget", "push", nupkgPath, "-s", "https://api.nuget.org/v3/index.json");
            }
        }
Esempio n. 17
0
        Attach(ProduceRepository repository, Graph graph)
        {
            Guard.NotNull(repository, nameof(repository));
            Guard.NotNull(graph, nameof(graph));

            var nugitRestore = graph.Command("nugit-restore", _ => Restore(repository));

            graph.Dependency(nugitRestore, graph.Command("restore"));

            var nugitUpdate = graph.Command("nugit-update", _ => Update(repository));

            graph.Dependency(nugitUpdate, graph.Command("update"));
        }
Esempio n. 18
0
        Dotnet(ProduceRepository repository, string command, VisualStudioSolution sln, params string[] args)
        {
            Guard.NotNull(repository, nameof(repository));
            Guard.Required(command, nameof(command));
            Guard.NotNull(sln, nameof(sln));

            var dotnetArgs = new List <string>()
            {
                command, sln.Path
            };

            dotnetArgs.AddRange(args);

            Dotnet(repository, dotnetArgs.ToArray());
        }
Esempio n. 19
0
        FindCurrentWorkspaceAndRepository()
        {
            var gitRepo = GitRepository.FindContainingRepository(Environment.CurrentDirectory);

            if (gitRepo != null)
            {
                CurrentWorkspace  = new ProduceWorkspace(Path.GetDirectoryName(gitRepo.Path));
                CurrentRepository = CurrentWorkspace.GetRepository(new GitRepositoryName(Path.GetFileName(gitRepo.Path)));
            }
            else
            {
                CurrentWorkspace  = new ProduceWorkspace(Path.GetFullPath(Environment.CurrentDirectory));
                CurrentRepository = null;
            }
        }
Esempio n. 20
0
        Clean(ProduceRepository repository, string slnPath)
        {
            if (slnPath == null)
            {
                return;
            }

            var sln   = new VisualStudioSolution(slnPath);
            var projs = FindLocalBuildableProjects(repository, sln);

            var targets = projs.Select(p => $"{p.MSBuildTargetName}:Clean");

            using (LogicalOperation.Start("Cleaning .NET artifacts"))
                DotnetMSBuild(repository, sln, targets);
        }
Esempio n. 21
0
        GenerateProgramWrappers(ProduceRepository repository, IEnumerable <string> programs)
        {
            Guard.NotNull(programs, nameof(programs));

            if (!programs.Any())
            {
                return;
            }

            using (LogicalOperation.Start("Writing " + repository.Name + " program wrapper script(s)"))
            {
                var programDirectory = repository.Workspace.GetBinDirectory();

                foreach (var program in programs)
                {
                    var programBase = Path.GetFileNameWithoutExtension(program);
                    var target      = Path.Combine("..", "..", repository.Name, program);
                    var cmdPath     = Path.Combine(programDirectory, programBase) + ".cmd";
                    var shPath      = Path.Combine(programDirectory, programBase);
                    var cmd         = GenerateCmd(target);
                    var sh          = GenerateSh(target);

                    Trace.WriteLine(cmdPath);
                    if (File.Exists(cmdPath))
                    {
                        File.Move(cmdPath, cmdPath);               // In case only the casing has changed
                    }
                    File.WriteAllText(cmdPath, cmd);

                    Trace.WriteLine(shPath);
                    if (File.Exists(shPath))
                    {
                        File.Move(shPath, shPath);              // In case only the casing has changed
                    }
                    File.WriteAllText(shPath, sh);

                    if (!EnvironmentExtensions.IsWindows)
                    {
                        Process.Start("chmod", "u+x \"" + shPath + "\"").WaitForExit();
                    }
                }
            }
        }
Esempio n. 22
0
        RunCommand(ProduceRepository repository, string command)
        {
            using (LogicalOperation.Start(Invariant($"Running {command} command for {repository.Name}")))
            {
                var graph = new Graph(repository.Workspace);
                foreach (var module in Modules)
                {
                    module.Attach(repository, graph);
                }

                var target = graph.FindCommand(command);
                if (target == null)
                {
                    Trace.TraceInformation(Invariant($"No {command} command"));
                    return;
                }

                new Builder(graph).Build(target);
            }
        }
Esempio n. 23
0
        DotnetMSBuild(
            ProduceRepository repository,
            VisualStudioSolution sln,
            IDictionary <string, string> properties,
            IEnumerable <string> targets)
        {
            Guard.NotNull(repository, nameof(repository));
            Guard.NotNull(sln, nameof(sln));
            Guard.NotNull(properties, nameof(properties));
            Guard.NotNull(targets, nameof(targets));

            var args = new List <string>()
            {
                "/nr:false",
            };

            args.AddRange(properties.Select(p => $"/p:{p.Key}=\"{p.Value}\""));
            args.AddRange(targets.Select(t => $"/t:{t}"));

            Dotnet(repository, "msbuild", sln, args.ToArray());
        }
Esempio n. 24
0
        Attach(ProduceRepository repository, Graph graph)
        {
            Guard.NotNull(repository, nameof(repository));
            Guard.NotNull(graph, nameof(graph));

            graph.Command("restore");
            graph.Command("update");
            graph.Command("clean", t => Clean(repository));
            graph.Command("build");
            graph.Command("package");
            graph.Command("publish");

            var distfiles = graph.Command("distfiles", t =>
                                          DistFiles(
                                              repository,
                                              graph.RequiredBy(t).OfType <ListTarget>().SelectMany(l => l.Values)));

            var dist = graph.Command("dist");

            graph.Dependency(distfiles, dist);
        }
Esempio n. 25
0
        Pack(ProduceRepository repository, string slnPath, string projPath, string nupkgDir)
        {
            if (slnPath == null)
            {
                return;
            }
            if (projPath == null)
            {
                return;
            }
            Guard.Required(nupkgDir, nameof(nupkgDir));
            if (!Path.IsPathRooted(nupkgDir))
            {
                throw new ArgumentException("nupkgDir must be an absolute path", nameof(nupkgDir));
            }

            var sln  = new VisualStudioSolution(slnPath);
            var proj = sln.ProjectReferences.Single(p => p.AbsoluteLocation == projPath);

            var properties = new Dictionary <string, string>()
            {
                { "PackageOutputPath", nupkgDir },
            };

            var targets = new[] { $"{proj.MSBuildTargetName}:Pack" };

            using (LogicalOperation.Start("Building nupkg"))
            {
                if (Directory.Exists(nupkgDir))
                {
                    Directory.Delete(nupkgDir, true);
                }
                Directory.CreateDirectory(nupkgDir);
                DotnetMSBuild(repository, sln, properties, targets);
            }
        }
Esempio n. 26
0
 Attach(ProduceRepository repository, Graph graph)
 {
 }
Esempio n. 27
0
        Attach(ProduceRepository repository, Graph graph)
        {
            Guard.NotNull(repository, nameof(repository));
            Guard.NotNull(graph, nameof(graph));

            var restore = graph.Command("restore");
            var build   = graph.Command("build");
            var clean   = graph.Command("clean");
            var package = graph.Command("package");
            var publish = graph.Command("publish");

            // Solution paths
            // TODO Use patterns e.g. **/*.sln once supported
            var dotnetSlnPaths = graph.List("dotnet-sln-paths",
                                            Path.Combine(repository.Path, ".nugit", repository.Name + ".sln"),
                                            Path.Combine(repository.Path, repository.Name + ".sln"));

            // Solution files
            var dotnetSlnFiles = graph.FileSet("dotnet-sln-files");

            graph.Dependency(dotnetSlnPaths, dotnetSlnFiles);

            // Primary solution path
            var dotnetSlnPath = graph.List("dotnet-sln-path", _ =>
                                           dotnetSlnFiles.Files.Take(1)
                                           .Select(f => f.Path));

            graph.Dependency(dotnetSlnFiles, dotnetSlnPath);

            // Primary solution file
            var dotnetSlnFile = graph.FileSet("dotnet-sln-file");

            graph.Dependency(dotnetSlnPath, dotnetSlnFile);

            // Project paths
            var dotnetProjPaths = graph.List("dotnet-proj-paths", _ =>
                                             dotnetSlnFile.Files.Take(1)
                                             .Select(f => f.Path)
                                             .Select(p => new VisualStudioSolution(p))
                                             .SelectMany(sln => FindLocalBuildableProjects(repository, sln))
                                             .Select(r => r.AbsoluteLocation));

            graph.Dependency(dotnetSlnFile, dotnetProjPaths);

            // Project files
            var dotnetProjFiles = graph.FileSet("dotnet-proj-files");

            graph.Dependency(dotnetProjPaths, dotnetProjFiles);

            // Primary project path
            var dotnetProjPath = graph.List("dotnet-proj-path", _ =>
                                            dotnetProjFiles.Files
                                            .Select(f => f.Path)
                                            .Where(p =>
                                                   string.Equals(
                                                       Path.GetFileNameWithoutExtension(p),
                                                       repository.Name,
                                                       StringComparison.OrdinalIgnoreCase))
                                            .Take(1));

            graph.Dependency(dotnetProjFiles, dotnetProjPath);

            // Primary project file
            var dotnetProjFile = graph.FileSet("dotnet-proj-file");

            graph.Dependency(dotnetProjPath, dotnetProjFile);

            // Path to .nupkg output directory
            var nupkgDir = repository.GetWorkSubdirectory("nupkg");

            // Path to .nupkg file
            var nupkgFilePath = graph.List("dotnet-nupkg-path", _ => {
                if (!Directory.Exists(nupkgDir))
                {
                    return(new string[0]);
                }
                return
                (Directory.EnumerateFiles(nupkgDir, "*.nupkg")
                 .Select(f => Path.Combine(nupkgDir, f))
                 .Take(1));
            });

            // .nupkg file
            var nupkgFile = graph.FileSet("dotnet-nupkg-file");

            graph.Dependency(nupkgFilePath, nupkgFile);

            // Restore
            var dotnetRestore = graph.Command("dotnet-restore", _ =>
                                              Restore(repository, dotnetSlnFile.Files.SingleOrDefault()?.Path));

            graph.Dependency(dotnetProjFiles, dotnetRestore); // Should be all projects in sln, not just local?
            graph.Dependency(dotnetRestore, restore);

            // Build
            var dotnetBuild = graph.Command("dotnet-build", _ =>
                                            Build(repository, dotnetSlnFile.Files.SingleOrDefault()?.Path));

            graph.Dependency(dotnetProjFiles, dotnetBuild);
            graph.Dependency(dotnetBuild, build);

            // Pack
            var dotnetPack = graph.Command("dotnet-pack", _ =>
                                           Pack(
                                               repository,
                                               dotnetSlnFile.Files.SingleOrDefault()?.Path,
                                               dotnetProjFile.Files.SingleOrDefault()?.Path,
                                               nupkgDir));

            graph.Dependency(dotnetProjFile, dotnetPack);
            graph.Dependency(dotnetPack, package);

            // NuGet Push
            var dotnetNugetPush = graph.Command("dotnet-nuget-push", _ =>
                                                NugetPush(repository, nupkgFile.Files.SingleOrDefault()?.Path));

            graph.Dependency(nupkgFile, dotnetNugetPush);
            graph.Dependency(dotnetNugetPush, publish);

            // Clean
            var dotnetClean = graph.Command("dotnet-clean", _ =>
                                            Clean(repository, dotnetSlnFile.Files.SingleOrDefault()?.Path));

            graph.Dependency(dotnetSlnFile, dotnetClean);
            graph.Dependency(dotnetClean, clean);
        }