12
12
#l "notifications . cake "
13
13
#l "generic-tasks.cake"
14
14
#l "apps - uwp - tasks . cake "
15
- #l "apps-web-tasks.cake"
16
15
#l "apps-wpf-tasks.cake"
17
16
#l "codesigning - tasks . cake "
18
17
#l "components-tasks.cake"
@@ -91,7 +90,6 @@ public class BuildContext : BuildContextBase
91
90
public InstallerIntegration Installer { get ; set ; }
92
91
public NotificationsIntegration Notifications { get ; set ; }
93
92
public SourceControlIntegration SourceControl { get ; set ; }
94
- public OctopusDeployIntegration OctopusDeploy { get ; set ; }
95
93
96
94
// Contexts
97
95
public GeneralContext General { get ; set ; }
@@ -106,7 +104,6 @@ public class BuildContext : BuildContextBase
106
104
public ToolsContext Tools { get ; set ; }
107
105
public UwpContext Uwp { get ; set ; }
108
106
public VsExtensionsContext VsExtensions { get ; set ; }
109
- public WebContext Web { get ; set ; }
110
107
public WpfContext Wpf { get ; set ; }
111
108
112
109
public List< string > AllProjects { get ; private set ; }
@@ -154,14 +151,12 @@ Setup<BuildContext>(setupContext =>
154
151
buildContext . Tools = InitializeToolsContext ( buildContext , buildContext ) ;
155
152
buildContext . Uwp = InitializeUwpContext ( buildContext , buildContext ) ;
156
153
buildContext . VsExtensions = InitializeVsExtensionsContext ( buildContext , buildContext ) ;
157
- buildContext . Web = InitializeWebContext ( buildContext , buildContext ) ;
158
154
buildContext . Wpf = InitializeWpfContext ( buildContext , buildContext ) ;
159
155
160
156
// Other integrations last
161
157
buildContext . IssueTracker = new IssueTrackerIntegration ( buildContext ) ;
162
158
buildContext . Installer = new InstallerIntegration ( buildContext ) ;
163
159
buildContext . Notifications = new NotificationsIntegration ( buildContext ) ;
164
- buildContext . OctopusDeploy = new OctopusDeployIntegration ( buildContext ) ;
165
160
buildContext . SourceControl = new SourceControlIntegration ( buildContext ) ;
166
161
167
162
setupContext . LogSeparator ( "Validating build context" ) ;
@@ -179,7 +174,6 @@ Setup<BuildContext>(setupContext =>
179
174
buildContext . Processors . Add ( new ToolsProcessor ( buildContext ) ) ;
180
175
buildContext . Processors . Add ( new UwpProcessor ( buildContext ) ) ;
181
176
buildContext . Processors . Add ( new VsExtensionsProcessor ( buildContext ) ) ;
182
- buildContext . Processors . Add ( new WebProcessor ( buildContext ) ) ;
183
177
buildContext . Processors . Add ( new WpfProcessor ( buildContext ) ) ;
184
178
// !!! Note: we add test projects *after* preparing all the other processors, see Prepare task !!!
185
179
@@ -249,7 +243,6 @@ Task("Prepare")
249
243
buildContext . RegisteredProjects . AddRange ( buildContext . Tools . Items ) ;
250
244
buildContext . RegisteredProjects . AddRange ( buildContext . Uwp . Items ) ;
251
245
buildContext . RegisteredProjects . AddRange ( buildContext . VsExtensions . Items ) ;
252
- buildContext . RegisteredProjects . AddRange ( buildContext . Web . Items ) ;
253
246
buildContext . RegisteredProjects . AddRange ( buildContext . Wpf . Items ) ;
254
247
255
248
await buildContext . BuildServer . BeforePrepareAsync ( ) ;
@@ -272,7 +265,6 @@ Task("Prepare")
272
265
buildContext . AllProjects . AddRange ( buildContext . Tools . Items ) ;
273
266
buildContext . AllProjects . AddRange ( buildContext . Uwp . Items ) ;
274
267
buildContext . AllProjects . AddRange ( buildContext . VsExtensions . Items ) ;
275
- buildContext . AllProjects . AddRange ( buildContext . Web . Items ) ;
276
268
buildContext . AllProjects . AddRange ( buildContext . Wpf . Items ) ;
277
269
278
270
buildContext . CakeContext . LogSeparator ( "Final check which test projects should be included (1/2)" ) ;
@@ -795,7 +787,6 @@ Task("TestNotifications")
795
787
await buildContext . Notifications . NotifyAsync ( "MyProject" , "This is a generic test" ) ;
796
788
await buildContext . Notifications . NotifyAsync ( "MyProject" , "This is a component test" , TargetType . Component ) ;
797
789
await buildContext . Notifications . NotifyAsync ( "MyProject" , "This is a docker image test" , TargetType . DockerImage ) ;
798
- await buildContext . Notifications . NotifyAsync ( "MyProject" , "This is a web app test" , TargetType . WebApp ) ;
799
790
await buildContext . Notifications . NotifyAsync ( "MyProject" , "This is a wpf app test" , TargetType . WpfApp ) ;
800
791
await buildContext . Notifications . NotifyErrorAsync ( "MyProject" , "This is an error" ) ;
801
792
} ) ;
0 commit comments