-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathProgram.cs
38 lines (35 loc) · 1.33 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using Build;
using Build.Core;
using Build.Core.Doc;
using Build.Core.Targets;
using static Pure.DI.Lifetime;
DI.Setup(nameof(Composition))
.Hint(Hint.ThreadSafe, "Off")
.Hint(Hint.Resolve, "Off")
.Root<RootTarget>(nameof(Composition.Root))
.DefaultLifetime(PerResolve)
.Bind().To<RootCommand>()
.Bind().To<Settings>()
.DefaultLifetime(PerBlock)
.Bind<ITeamCityArtifactsWriter>().To(_ => GetService<ITeamCityWriter>())
.Bind().To(_ => GetService<INuGet>())
.Bind().To<DotNetEnv>()
.Bind().To<DotNetXmlDocumentWalker<TT>>()
.Bind().To<MarkdownWriterVisitor>()
// Targets
.Bind(Tag.Type).To<GeneratorTarget>()
.Bind(Tag.Type).To<LibrariesTarget>()
.Bind(Tag.Type).To<CompatibilityCheckTarget>()
.Bind(Tag.Type).To<PackTarget>()
.Bind(Tag.Type).As(Singleton).To<CreateExamplesTarget>()
.Bind(Tag.Type).To<ReadmeTarget>()
.Bind(Tag.Type).To<TestExamplesTarget>()
.Bind(Tag.Type).To<BenchmarksTarget>()
.Bind(Tag.Type).To<DeployTarget>()
.Bind(Tag.Type).To<TemplateTarget>()
.Bind(Tag.Type).To<InstallTemplateTarget>()
.Bind(Tag.Type).To<UpdateTarget>()
.Bind(Tag.Type).To<PublishBlazorTarget>()
.Bind(Tag.Type).To<PerformanceTestsTarget>()
.Bind(Tag.Type).To<AIContextTarget>();
return await new Composition().Root.RunAsync(CancellationToken.None);