-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModules.xml
More file actions
509 lines (462 loc) · 45.6 KB
/
Modules.xml
File metadata and controls
509 lines (462 loc) · 45.6 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
<?xml version="1.0" encoding="utf-8"?>
<File>
<Modules>
<Module Name="ExampleEntities">
<RemoveFiles Path="RRSP.Entities\Address.cs"/>
<RemoveFiles Path="RRSP.Entities\Customer.cs"/>
<RemoveFiles Path="RRSP.Entities\Employee.cs"/>
<RemoveFiles Path="RRSP.Entities\Order.cs"/>
<RemoveFiles Path="RRSP.Entities\Product.cs"/>
<RemoveLine Path="RRSP.Load\Program.cs" Line="{"SO", ShowOrder},"/>
<RemoveLine Path="RRSP.Load\Program.cs" From="static void ShowOrder()" To="}//ShowOrder"/>
<RemoveFiles Path="RRSP.Logic\CustomerLogic.cs"/>
<RemoveFiles Path="RRSP.Logic\EmployeeLogic.cs"/>
<RemoveFiles Path="RRSP.Logic\OrderLogic.cs"/>
<RemoveFiles Path="RRSP.Logic\ProductLogic.cs"/>
<RemoveFiles Path="RRSP.Logic\ShipperLogic.cs"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="sb.Schema.Settings.TypeAttributes<OrderEntity>().Add(new SystemVersionedAttribute());"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" From="EmployeeLogic.Start(sb);" To="ShipperLogic.Start(sb);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs"
From="TypeConditionLogic.Register<OrderEntity>(RRSPGroup.UserEntities, o => o.Employee == EmployeeEntity.Current);"
To="TypeConditionLogic.Register<CompanyEntity>(RRSPGroup.CurrentCustomer, o => o == CustomerEntity.Current);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="CacheLogic.CacheTable<ShipperEntity>(sb);"/>
</Module>
<Module Name="ExampleReact" DependsOn="ExampleEntities" >
<RemoveLine Path="RRSP.React\App\RRSP\RRSPClient.tsx"
From="import { /*RRSP.Entities*/"
To="} from './RRSP.Entities'"/>
<RemoveLine Path="RRSP.React\App\RRSP\RRSPClient.tsx"
From="Navigator.addSettings(new EntitySettings(AddressEmbedded, a => import('./Templates/Address')));"
To="}));//Ship"/>
<RemoveLine Path="RRSP.React\App\RRSP\RRSPClient.tsx"
Line="import OrderFilter from './Templates/OrderFilter'"/>
<RemoveFiles Path="RRSP.React\App\RRSP\Templates\Address.tsx"/>
<RemoveFiles Path="RRSP.React\App\RRSP\Templates\Category.tsx"/>
<RemoveFiles Path="RRSP.React\App\RRSP\Templates\Company.tsx"/>
<RemoveFiles Path="RRSP.React\App\RRSP\Templates\Employee.tsx"/>
<RemoveFiles Path="RRSP.React\App\RRSP\Templates\Order.tsx"/>
<RemoveFiles Path="RRSP.React\App\RRSP\Templates\OrderFilter.tsx"/>
<RemoveFiles Path="RRSP.React\App\RRSP\Templates\Person.tsx"/>
<RemoveFiles Path="RRSP.React\App\RRSP\Templates\Product.tsx"/>
<RemoveFiles Path="RRSP.React\App\RRSP\Templates\Supplier.tsx"/>
<RemoveLine Path="RRSP.React\App\Layout.tsx"
Line="<LinkContainer to="~/find/order"><NavDropdown.Item>Orders</NavDropdown.Item></LinkContainer>" />"/>
</Module>
<Module Name="Migrations">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="MigrationLogic.Start(sb);"/>
<RemoveLine Path="RRSP.Load\Program.cs" From="if (args.Any())" To="} //if(args.Any())"/>
<RemoveLine Path="RRSP.Load\Program.cs" Line="{"SQL", SqlMigrationRunner.SqlMigrations},"/>
<RemoveLine Path="RRSP.Load\Program.cs" Line="{"CS", () => RRSPMigrations.CSharpMigrations(false), "C# Migrations"},"/>
<RemoveLine Path="RRSP.Load\RRSPMigrations.cs" From="public static void CSharpMigrations(bool autoRun)" To="} //CSharpMigrations"/>
</Module>
<Module Name="LoadNorthwind" DependsOn="ExampleEntities,Migrations">
<RemoveLine Path="RRSP.Load\RRSPMigrations.cs" From="EmployeeLoader.LoadRegions," To="OrderLoader.UpdateOrdersDate,"/>
<RemoveFiles Path="RRSP.Load\CustomerLoader.cs"/>
<RemoveFiles Path="RRSP.Load\EmployeeLoader.cs"/>
<RemoveFiles Path="RRSP.Load\NorthwindSchema.cs"/>
<RemoveFiles Path="RRSP.Load\OrderLoader.cs"/>
<RemoveFiles Path="RRSP.Load\ProductLoader.cs"/>
<RemoveFiles Path="RRSP.Load\SupplierFaxes.csv"/>
<RemoveLine Path="RRSP.Load\appsettings.json" Line=""NorthwindConnectionString": "Data Source=.\\SQLEXPRESS;Initial Catalog=Northwind;Integrated Security=True""/>
</Module>
<Module Name="UserQuery">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="sb.Schema.Settings.FieldAttributes((UserQueryEntity uq) => uq.Owner).Replace(new ImplementedByAttribute(typeof(UserEntity), typeof(RoleEntity)));"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="UserQueryLogic.Start(sb);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="UserQueryLogic.RegisterUserTypeCondition(sb, RRSPGroup.UserEntities);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="UserQueryLogic.RegisterRoleTypeCondition(sb, RRSPGroup.RoleEntities);"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="UserQueryServer.Start(app);"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as UserQueryClient from "@extensions/UserQueries/UserQueryClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="UserQueryClient.start({ routes });"/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\App\Main.tsx" Line="import UserQueryOmniboxProvider from "@extensions/UserQueries/UserQueryOmniboxProvider""/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\App\Main.tsx" Line="new UserQueryOmniboxProvider(),"/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\Startup.cs" Line="new UserQueryOmniboxResultGenerator(UserQueryLogic.Autocomplete),"/>
</Module>
<Module Name="Word">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="WordTemplateLogic.Start(sb);"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as WordClient from "@extensions/Word/WordClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="WordClient.start({ routes, contextual: true, queryButton: true, entityButton: false });"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="WordServer.Start(app);"/>
<RemoveLine DependsOn="ExampleEntities,Migrations" Path="RRSP.Load\RRSPMigrations.cs" Line="ImportWordReportTemplateForOrder,"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Load\RRSPMigrations.cs" From="public static void ImportWordReportTemplateForOrder()" To="}"/>
<RemoveFiles DependsOn="ExampleEntities" Path="RRSP.Load\WordTemplates\Order.docx"/>
</Module>
<Module Name="Chart" DependsOn="Files">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="sb.Schema.Settings.FieldAttributes((UserChartEntity uc) => uc.Owner).Replace(new ImplementedByAttribute(typeof(UserEntity), typeof(RoleEntity)));"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="ChartLogic.Start(sb);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="UserChartLogic.RegisterUserTypeCondition(sb, RRSPGroup.UserEntities);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="UserChartLogic.RegisterRoleTypeCondition(sb, RRSPGroup.RoleEntities);"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as ChartClient from "@extensions/Chart/ChartClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="ChartClient.start({ routes });"/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\App\Main.tsx" Line="import ChartOmniboxProvider from "@extensions/Chart/ChartOmniboxProvider""/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\App\Main.tsx" Line="import UserChartOmniboxProvider from "@extensions/Chart/UserChartOmniboxProvider""/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\App\Main.tsx" Line="new ChartOmniboxProvider(),"/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\App\Main.tsx" Line="new UserChartOmniboxProvider(),"/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\Startup.cs" Line="new ChartOmniboxResultGenerator(),"/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\Startup.cs" Line="new UserChartOmniboxResultGenerator(UserChartLogic.Autocomplete),"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="ChartServer.Start(app);"/>
</Module>
<Module Name="Files">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="FilePathEmbeddedLogic.Start(sb);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="FileLogic.Start(sb);"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as FilesClient from "@extensions/Files/FilesClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="FilesClient.start({ routes });"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="FilesServer.Start(app);"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Entities\Employee.cs" Line="public Lite<FileEntity>? Photo { get; set; }"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Entities\Product.cs" Line="public FileEmbedded? Picture { get; set; }"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Load\EmployeeLoader.cs" Line="Photo = new FileEntity { FileName = e.PhotoPath.AfterLast('/'), BinaryFile = RemoveOlePrefix(e.Photo.ToArray()) }.ToLiteFat(),"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Load\EmployeeLoader.cs" From="public static byte[] RemoveOlePrefix(byte[] bytes)" To="} //RemoveOlePrefix"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Load\ProductLoader.cs" Line="Picture = new FileEmbedded { FileName = s.CategoryName + ".jpg", BinaryFile = EmployeeLoader.RemoveOlePrefix(s.Picture.ToArray()) },"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Logic\ProductLogic.cs" Line="s.Picture"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Logic\EmployeeLogic.cs" Line="e.Photo, //1"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Logic\EmployeeLogic.cs" Line="e.Photo, //2"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.React\App\RRSP\RRSPClient.tsx" From="{/*Files*/ }" To="{/*Files*/ }"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.React\App\RRSP\Templates\Category.tsx" Line="const forceUpdate = useForceUpdate();"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.React\App\RRSP\Templates\Category.tsx" Line="const maxDimensions: React.CSSProperties = { maxWidth: "96px", maxHeight: "96px" };"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.React\App\RRSP\Templates\Category.tsx" Line="<FileLine ctx={ctx.subCtx(c => c.picture)} onChange={() => forceUpdate()} />"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.React\App\RRSP\Templates\Category.tsx" From="<div className="col-sm-3">{/*photo*/}" To="</div>{/*photo*/}"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.React\App\RRSP\Templates\Employee.tsx" From="{/*photo*/}" To="{/*photo*/}"/>
</Module>
<Module Name="Excel">
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as ExcelClient from "@extensions/Excel/ExcelClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="ExcelClient.start({ routes, plainExcel: true, excelReport: true });"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="ExcelServer.Start(app);"/>
</Module>
<Module Name="Dashboard" DependsOn="Chart,UserQuery">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="sb.Schema.Settings.FieldAttributes((DashboardEntity cp) => cp.Owner).Replace(new ImplementedByAttribute(typeof(UserEntity), typeof(RoleEntity)));"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="DashboardLogic.Start(sb);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="ViewLogLogic.Start(sb, new HashSet<Type> { typeof(UserQueryEntity), typeof(UserChartEntity), typeof(DashboardEntity) });"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="DashboardLogic.RegisterUserTypeCondition(sb, RRSPGroup.UserEntities);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="DashboardLogic.RegisterRoleTypeCondition(sb, RRSPGroup.RoleEntities);"/>
<RemoveLine Path="RRSP.React\App\Home.tsx" From="if (AuthClient.currentUser()) {" To="else //Dashboard"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as DashboardClient from "@extensions/Dashboard/DashboardClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="DashboardClient.start({ routes });"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="DashboardServer.Start(app);"/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\App\Main.tsx" Line="import DashboardOmniboxProvider from "@extensions/Dashboard/DashboardOmniboxProvider""/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\App\Main.tsx" Line="new DashboardOmniboxProvider(),"/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\Startup.cs" Line="new DashboardOmniboxResultGenerator(DashboardLogic.Autocomplete),"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Load\UserAssets.xml" From="<UserChart Guid="d681b3f5-a3a9-4228-93e9-e856f45d911a" DisplayName="Evolution By Employee" Query="Order" Owner="User;2" ChartScript="StackedLines" GroupResults="true">" To="</Dashboard>"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Load\UserAssets.xml" Line="<ToolbarElement Type="Item" IconName="fas fa-tachometer-alt" IconColor="blue" Content="7914fa80-dfd6-42a2-b29a-18e8cc5851f8" />" />
</Module>
<Module Name="Toolbar">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="ToolbarLogic.Start(sb);"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="ToolbarServer.Start(app);"/>
<RemoveLine Path="RRSP.React\App\Main.tsx"
From="import * as ToolbarClient from "@extensions/Toolbar/ToolbarClient""
To="import QueryToolbarConfig from "@extensions/Toolbar/QueryToolbarConfig""/>
<RemoveLine Path="RRSP.React\App\Main.tsx"
From="ToolbarClient.start({ routes },"
To=");"/>
<RemoveLine DependsOn="UserQuery" Path="RRSP.React\App\Main.tsx" Line="import UserQueryToolbarConfig from "@extensions/UserQueries/UserQueryToolbarConfig""/>
<RemoveLine DependsOn="Chart" Path="RRSP.React\App\Main.tsx" Line="import UserChartToolbarConfig from "@extensions/Chart/UserChartToolbarConfig""/>
<RemoveLine DependsOn="Dashboard" Path="RRSP.React\App\Main.tsx" Line="import DashboardToolbarConfig from "@extensions/Dashboard/DashboardToolbarConfig""/>
<RemoveLine DependsOn="UserQuery" Path="RRSP.React\App\Main.tsx" Line="new UserQueryToolbarConfig(),"/>
<RemoveLine DependsOn="Chart" Path="RRSP.React\App\Main.tsx" Line="new UserChartToolbarConfig(),"/>
<RemoveLine DependsOn="Dashboard" Path="RRSP.React\App\Main.tsx" Line="new DashboardToolbarConfig(),"/>
<RemoveSpanInLines Path="RRSP.React\App\Layout.tsx" Span="const [sideMenuVisible] = React.useState(true);"/>
<RemoveLine Path="RRSP.React\App\Layout.tsx" From="<SidebarContainer" To="</SidebarContainer>"/>
<RemoveLine Path="RRSP.React\App\Layout.tsx" Line="{/* Layout"/>
<RemoveLine Path="RRSP.React\App\Layout.tsx" Line="Layout */}"/>
<RemoveLine Path="RRSP.React\App\Layout.tsx" Line="{AuthClient.currentUser() && <ToolbarRenderer location="Top" />}"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Load\UserAssets.xml" From="<ToolbarMenu Guid="fd577065-f887-4567-8da3-9d5bcc1cedfd" Name="Products">" To="</ToolbarMenu>" />
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Load\UserAssets.xml" From="<ToolbarMenu Guid="8b7e4ac5-cf45-41cb-8cff-4ce04506e12f" Name="Employee">" To="</ToolbarMenu>" />
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Load\UserAssets.xml" From="<ToolbarElement Type="Item" IconName="fas fa-shopping-cart" IconColor="orange" Content="Order" />"
To="<ToolbarElement Type="Item" IconName="fas fa-user" IconColor="seagreen" Content="8b7e4ac5-cf45-41cb-8cff-4ce04506e12f" />" />
<RemoveLine DependsOn="Dynamic" Path="RRSP.Load\UserAssets.xml" Line="<ToolbarElement Type="Item" Label="Dynamic Panel" IconName="fas fa-arrows-alt" IconColor="#9b6bcc" Content="EvalPanelPermission.ViewDynamicPanel" Url="~/dynamic/panel" />" />
<RemoveLine DependsOn="Workflow" Path="RRSP.Load\UserAssets.xml" Line="<ToolbarElement Type="Item" Label="Workflow Script Runner" IconName="fas fa-random" IconColor="#9b6bcc" Content="WorkflowPermission.ViewWorkflowPanel" Url="~/workflow/panel" />" />
<RemoveLine DependsOn="Workflow" Path="RRSP.Load\UserAssets.xml" From="<ToolbarMenu Guid="b9423939-ec3d-4495-9361-a335390d93a6" Name="Workflow">" To="</ToolbarMenu>" />
<RemoveLine DependsOn="Workflow" Path="RRSP.Load\UserAssets.xml" Line="<ToolbarElement Type="Item" IconName="fas fa-random" IconColor="saddlebrown" Content="b9423939-ec3d-4495-9361-a335390d93a6" />" />
<RemoveLine Path="RRSP.Load\UserAssets.xml" From="<ToolbarMenu Guid="2deb71ea-f065-4fe3-9215-90460bc2d5ec" Name="Reports">" To="</Toolbar>" />
</Module>
<Module Name="Process">
<RemoveLine Path="RRSP.Entities\Order.cs" Line="public static ConstructSymbol<ProcessEntity>.FromMany<OrderEntity> CancelWithProcess;"/>
<RemoveLine Path="RRSP.Entities\Order.cs" From="[AutoInit]//OrderProcess" To="}"/>
<RemoveLine Path="RRSP.Logic\OrderLogic.cs" Line="ProcessLogic.Register(OrderProcess.CancelOrders, new CancelOrderAlgorithm());"/>
<RemoveLine Path="RRSP.Logic\OrderLogic.cs" From="public class CancelOrderAlgorithm : PackageExecuteAlgorithm<OrderEntity>" To="} //CancelOrderAlgorithm"/>
<RemoveLine Path="RRSP.Logic\OrderLogic.cs" From="new Graph<ProcessEntity>.ConstructFromMany<OrderEntity>(OrderOperation.CancelWithProcess)" To="}.Register();"/>
<RemoveLine Path="RRSP.Logic\Starter.cs"
From="sb.Schema.Settings.FieldAttributes((PackageLineEntity cp) => cp.Package).Replace(new ImplementedByAttribute(typeof(PackageEntity), typeof(PackageOperationEntity)));"
To="sb.Schema.Settings.FieldAttributes((ProcessEntity s) => s.User).Replace(new ImplementedByAttribute(typeof(UserEntity)));"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" From="ProcessLogic.Start(sb);"
To="PackageLogic.Start(sb, packages: true, packageOperations: true);"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as ProcessClient from "@extensions/Processes/ProcessClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="ProcessClient.start({ routes, packages: true, packageOperations: true });"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="ProcessRunnerLogic.StartRunningProcesses(5 * 1000);"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="ProcessServer.Start(app);"/>
</Module>
<Module Name="Scheduler" DependsOn="Process">
<RemoveLine Path="RRSP.Entities\Order.cs" From="[AutoInit]//OrderTask" To="}"/>
<RemoveLine Path="RRSP.Logic\OrderLogic.cs" From="SimpleTaskLogic.Register(OrderTask.CancelOldOrdersWithProcess, ctx =>" To="});//CancelOldOrdersProcess"/>
<RemoveLine Path="RRSP.Logic\Starter.cs"
From="sb.Schema.Settings.FieldAttributes((ScheduledTaskEntity a) => a.User).Replace(new ImplementedByAttribute(typeof(UserEntity)));"
To="sb.Schema.Settings.FieldAttributes((ScheduledTaskLogEntity a) => a.User).Replace(new ImplementedByAttribute(typeof(UserEntity)));"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="SchedulerLogic.Start(sb);"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="SchedulerServer.Start(app, lifetime);"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="SchedulerLogic.StartScheduledTasks();"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as SchedulerClient from "@extensions/Scheduler/SchedulerClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="SchedulerClient.start({ routes });"/>
</Module>
<Module Name="Mailing">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="sb.Schema.Settings.FieldAttributes((EmailMessageEntity em) => em.From.EmailOwner).Replace(new ImplementedByAttribute(typeof(UserEntity)));"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="sb.Schema.Settings.FieldAttributes((EmailMessageEntity em) => em.Recipients.First().EmailOwner).Replace(new ImplementedByAttribute(typeof(UserEntity)));"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="sb.Schema.Settings.FieldAttributes((EmailSenderConfigurationEntity em) => em.DefaultFrom!.EmailOwner).Replace(new ImplementedByAttribute(typeof(UserEntity)));"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="sb.Schema.Settings.FieldAttributes((EmailSenderConfigurationEntity em) => em.AdditionalRecipients.First().EmailOwner).Replace(new ImplementedByAttribute(typeof(UserEntity)));"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="EmailLogic.Start(sb, () => Configuration.Value.Email, (et, target) => Configuration.Value.EmailSender);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" From="s.Email.SendEmails," To="s.Email.UrlLeft"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="AsyncEmailSenderLogic.StartRunningEmailSenderAsync(5 * 1000);" />
<RemoveLine Path="RRSP.React\Startup.cs" Line="MailingServer.Start(app);" />
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as MailingClient from "@extensions/Mailing/MailingClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="MailingClient.start({ routes, newsletter: false, pop3Config: false, sendEmailTask: false, contextual: true, queryButton: true });"/>
<RemoveLine Path="RRSP.Entities\ApplicationConfiguration.cs" From="/*Email*/" To="public EmailSenderConfigurationEntity EmailSender { get; set; }"/>
<RemoveLine Path="RRSP.React\App\RRSP\Templates\ApplicationConfiguration.tsx" From="<Tab eventKey="tab" title={ctx.niceName(a => a.email)}>" To="</Tab>"/>
<RemoveLine Path="RRSP.Load\RRSPMigrations.cs" From="Email = new EmailConfigurationEmbedded" To="}, //Email"/>
</Module>
<Module Name="SMS">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="SMSLogic.Start(sb, null, () => Configuration.Value.Sms);" />
<RemoveLine Path="RRSP.Entities\ApplicationConfiguration.cs" From="/*Sms*/" To="public SMSConfigurationEmbedded Sms { get; set; }"/>
<RemoveLine Path="RRSP.React\App\RRSP\Templates\ApplicationConfiguration.tsx" From="<Tab eventKey="sms" title={ctx.niceName(a => a.sms)}>" To="</Tab>"/>
<RemoveLine Path="RRSP.Load\RRSPMigrations.cs" From="Sms = new SMSConfigurationEmbedded" To="}, //Sms"/>
<RemoveLine Path="RRSP.Test.Environment\RRSPEnvironment.cs" From="Sms = new SMSConfigurationEmbedded" To="}, //Sms"/>
</Module>
<Module Name="Auth">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="AuthLogic.Start(sb, "System", null);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="AuthLogic.StartAllModules(sb);"/>
<RemoveSpanInLines Path="RRSP.Logic\Starter.cs" Span="typeof(UserEntity),"/>
<RemoveSpanInLines Path="RRSP.Logic\Starter.cs" Span="typeof(UserEntity)"/>
<RemoveSpanInLines Path="RRSP.Logic\Starter.cs" Span="typeof(RoleEntity)"/>
<RemoveLine Path="RRSP.Entities\ApplicationConfiguration.cs" From="/*AuthTokens*/" To="public AuthTokenConfigurationEmbedded AuthTokens { get; set; }"/>
<RemoveLine Path="RRSP.React\App\RRSP\Templates\ApplicationConfiguration.tsx" From="<Tab eventKey="auth" title={ctx.niceName(a => a.authTokens)}>" To="</Tab>"/>
<RemoveLine Path="RRSP.Load\RRSPMigrations.cs" From="AuthTokens = new AuthTokenConfigurationEmbedded" To="}, //Auth"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="AuthServer.Start(app, () => Starter.Configuration.Value.AuthTokens, "IMPORTANT SECRET FROM RRSP. CHANGE THIS STRING!!!");" />
<RemoveLine Path="RRSP.Load\Program.cs" Line="{"AR", AuthLogic.ImportExportAuthRules},"/>
<RemoveLine Path="RRSP.Load\RRSPMigrations.cs" Line="EmployeeLoader.CreateUsers," DependsOn="Migrations,LoadNorthwind"/>
<RemoveLine Path="RRSP.Load\RRSPMigrations.cs" From="CreateRoles," To="CreateSystemUser,"/>
<RemoveLine Path="RRSP.Load\EmployeeLoader.cs" From="internal static void CreateUsers()" To="} //CreateUsers"/>
<RemoveLine Path="RRSP.Load\RRSPMigrations.cs" From="internal static void CreateRoles()" To="} //CreateSystemUser"/>
<RemoveLine Path="RRSP.Load\AuthRules.xml" From="<Types>" To="</Types>" DependsOn="ExampleEntities"/>
<RemoveFiles Path="RRSP.Entities\UserEmployeeMixin.cs" DependsOn="ExampleEntities"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="MixinDeclarations.Register<UserEntity, UserEmployeeMixin>();" DependsOn="ExampleEntities"/>
<RemoveLine Path="RRSP.React\App\RRSP\RRSPClient.tsx"
From="Navigator.getSettings(UserEntity)!.overrideView((rep) => {"
To="});"
DependsOn="ExampleEntities"/>
<RemoveSpanInLines Path="RRSP.Entities\Employee.cs" Span="get { return UserEntity.Current.Mixin<UserEmployeeMixin>().Employee; } //" DependsOn="ExampleEntities" />>
<RemoveSpanInLines Path="RRSP.React\App\Layout.tsx" Span="AuthClient.currentUser() &&" />
<RemoveLine Path="RRSP.React\App\Layout.tsx" Line="<LoginDropdown />"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as AuthClient from "@extensions/Authorization/AuthClient""/>
<RemoveSpanInLines Path="RRSP.React\App\Main.tsx" Span="AuthClient.autoLogin() //"/>
<RemoveSpanInLines Path="RRSP.React\App\Main.tsx" Span="!!AuthClient.currentUser(); //"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="AuthClient.startPublic({ routes, userTicket: true, windowsAuthentication: false, resetPassword: true, notifyLogout: true, });"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="AuthClient.start({ routes, types: true, properties: true, operations: true, queries: true, permissions: true });"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" From="AuthClient.Options.onLogin = (url?: string) => {" To="};"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" From="AuthClient.Options.onLogout = () => {" To="};"/>
<RemoveLine Path="RRSP.Test.Environment\RRSPEnvironment.cs" From="internal static void LoadUsers()" To="}//LoadUsers"/>
<RemoveLine Path="RRSP.Test.Environment\RRSPEnvironment.cs" Line="user.SetMixin((UserEmployeeMixin e) => e.Employee, Database.Query<EmployeeEntity>().Single(e => e.FirstName == userName).ToLite());" DependsOn="ExampleEntities"/>
<RemoveLine Path="RRSP.Test.Environment\EnvironmentTest.cs" Line="RRSPEnvironment.LoadUsers();"/>
<RemoveLine Path="RRSP.Test.Environment\EnvironmentTest.cs" Line="var authRules = XDocument.Load(@"..\..\..\..\RRSP.Load\AuthRules.xml");"/>
<RemoveLine Path="RRSP.Test.Environment\EnvironmentTest.cs" Line="AuthLogic.LoadRoles(authRules);"/>
<RemoveLine Path="RRSP.Test.Environment\EnvironmentTest.cs" Line="AuthLogic.ImportRulesScript(authRules, interactive: false)!.PlainSqlCommand().ExecuteLeaves();"/>
</Module>
<Module Name="Translation">
<RemoveLine Path="RRSP.Logic\Starter.cs" From="TranslationLogic.Start(sb, countLocalizationHits: false);" To="TranslatedInstanceLogic.Start(sb, () => CultureInfo.GetCultureInfo("en"));"/>
<RemoveFiles Path="RRSP.Entities\Translations" DependsOn="ExampleEntities" />
<RemoveLine Path="RRSP.React\Startup.cs" Line="TranslationServer.Start(app, new AlreadyTranslatedTranslator(new AzureTranslator("Your API Key for Azure Translate")));" />
<RemoveLine Path="RRSP.React\Startup.cs" From="SignumCultureSelectorFilter.GetCurrentCulture = (ctx) => GetCulture(ctx);" To="return DefaultCulture; //Translation" />
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as TranslationClient from "@extensions/Translation/TranslationClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="TranslationClient.start({ routes });"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as CultureClient from "@extensions/Translation/CultureClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line=".then(() => CultureClient.loadCurrentCulture())"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="CultureClient.onCultureLoaded.push(ci => {"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="}); //Culture"/>
<RemoveLine Path="RRSP.Load\Program.cs" Line="{"CT", TranslationLogic.CopyTranslations},"/>
<RemoveSpanInLines Path="RRSP.React\App\Main.tsx" Span="ci.name!; //"/>
<RemoveLine Path="RRSP.Load\RRSPMigrations.cs" Line="ImportSpanishInstanceTranslations," DependsOn="LoadNorthwind,Migrations"/>
<RemoveLine Path="RRSP.Load\RRSPMigrations.cs" From="public static void ImportSpanishInstanceTranslations()" To="}" DependsOn="LoadNorthwind"/>
<RemoveFiles Path="RRSP.Load\Category.es.View.xlsx" DependsOn="LoadNorthwind"/>
<RemoveLine Path="RRSP.Entities\Product.cs" Line="[TranslateField] //Localize categoryName column" DependsOn="ExampleEntities"/>
<RemoveLine Path="RRSP.Entities\Product.cs" Line="[TranslateField] //Localize description column" DependsOn="ExampleEntities"/>
<RemoveLine Path="RRSP.React\App\Layout.tsx" Line="<CultureDropdown />"/>
</Module>
<Module Name="Auth_ResetPasswordRequest" DependsOn="Auth,Mailing">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="ResetPasswordRequestLogic.Start(sb);"/>
</Module>
<Module Name="Auth_UserTicket" DependsOn="Auth">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="UserTicketLogic.Start(sb);"/>
</Module>
<Module Name="SessionLog" DependsOn="Auth">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="SessionLogLogic.Start(sb);"/>
<RemoveLine Path="RRSP.Load\UserAssets.xml" Line="<ToolbarElement Type="Item" Content="SessionLog" />" />
</Module>
<Module Name="Alerts">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="AlertLogic.Start(sb, typeof(UserEntity), /*Alert*/typeof(OrderEntity));"/>
<RemoveSpanInLines Path="RRSP.Logic\Starter.cs" Span=", /*Alert*/typeof(OrderEntity)" DependsOn="ExampleEntities" />
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="sb.Schema.Settings.FieldAttributes((AlertEntity a) => a.CreatedBy).Replace(new ImplementedByAttribute(typeof(UserEntity)));"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="sb.Schema.Settings.FieldAttributes((AlertEntity a) => a.AttendedBy).Replace(new ImplementedByAttribute(typeof(UserEntity)));"/>
</Module>
<Module Name="Notes">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="NoteLogic.Start(sb, typeof(UserEntity), /*Note*/typeof(OrderEntity));"/>
<RemoveSpanInLines Path="RRSP.Logic\Starter.cs" Span=", /*Note*/typeof(OrderEntity)" DependsOn="ExampleEntities" />
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="sb.Schema.Settings.FieldAttributes((NoteEntity n) => n.CreatedBy).Replace(new ImplementedByAttribute(typeof(UserEntity)));"/>
</Module>
<Module Name="Cache">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="CacheLogic.Start(sb);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="SetupCache(sb);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" From="private static void SetupCache(SchemaBuilder sb)" To="}"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="CacheClient.start({ routes });"/>
</Module>
<Module Name="SplitDB">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="string? logDatabase = Connector.TryExtractDatabaseNameWithPostfix(ref connectionString, "_Log");"/>
<RemoveSpanInLines Path="RRSP.Logic\Starter.cs" Span="LogDatabaseName = logDatabase, "/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="public string? LogDatabaseName;"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" From="public Type[] InLogDatabase = new Type[]" To="};"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" From="if (this.LogDatabaseName == null)" To="return new DatabaseName(null, this.LogDatabaseName);"/>
</Module>
<Module Name="PublicCatalog" DependsOn="ExampleEntities,Translation,Cache,Files">
<RemoveLine Path="RRSP.Logic\ProductLogic.cs" Line="public static ResetLazy<Dictionary<CategoryEntity, List<ProductEntity>>> ActiveProducts = null!;"/>
<RemoveLine Path="RRSP.Logic\ProductLogic.cs" From="ActiveProducts = sb.GlobalLazy(() =>" To="new InvalidateWith(typeof(ProductEntity)));"/>
<RemoveFiles Path="RRSP.React\App\PublicCatalog.tsx"/>
<RemoveLine Path="RRSP.React\App\Layout.tsx" Line="<LinkContainer to="~/publicCatalog"><NavDropdown.Item>Catalog</NavDropdown.Item></LinkContainer>"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="routes.push(<Route path="~/publicCatalog" component={PublicCatalog} />);"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import PublicCatalog from './PublicCatalog'"/>
<RemoveLine Path="RRSP.React\App\Home.tsx" From="if (!AuthClient.currentUser()) {" To="}//PublicCatalog"/>
<RemoveFiles Path="RRSP.React\App\RRSP\CatalogController.cs"/>
</Module>
<Module Name="Profiler">
<RemoveLine Path="RRSP.Logic\Starter.cs" From="ProfilerLogic.Start(sb," To="overrideSessionTimeout: true);"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as ProfilerClient from "@extensions/Profiler/ProfilerClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="ProfilerClient.start({ routes });"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="ProfilerServer.Start(app);"/>
</Module>
<Module Name="Omnibox">
<RemoveLine Path="RRSP.React\Startup.cs" From="OmniboxServer.Start(app," To=");//Omnibox"/>
<RemoveLine Path="RRSP.React\App\Layout.tsx" Line="<OmniboxAutocomplete inputAttrs={{ className: "form-control" }} />"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as OmniboxClient from "@extensions/Omnibox/OmniboxClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import DynamicQueryOmniboxProvider from "@extensions/Omnibox/DynamicQueryOmniboxProvider""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import EntityOmniboxProvider from "@extensions/Omnibox/EntityOmniboxProvider""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import SpecialOmniboxProvider from "@extensions/Omnibox/SpecialOmniboxProvider""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" From="OmniboxClient.start(" To=");//Omnibox"/>
</Module>
<Module Name="Map">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="MapLogic.Start(sb);"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="MapServer.Start(app);"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as MapClient from "@extensions/Map/MapClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="MapClient.start({ routes, auth: true, cache: true, disconnected: false, isolation: false });"/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\App\Main.tsx" Line="import MapOmniboxProvider from "@extensions/Map/MapOmniboxProvider""/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\App\Main.tsx" Line="new MapOmniboxProvider(),"/>
<RemoveLine DependsOn="Omnibox" Path="RRSP.React\Startup.cs" Line="new MapOmniboxResultGenerator(type => OperationLogic.TypeOperations(type).Any()),"/>
</Module>
<Module Name="Help">
<RemoveLine Path="RRSP.Load\Program.cs" Line="{"HL", HelpXml.ImportExportHelp},"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="HelpLogic.Start(sb);"/>
</Module>
<Module Name="PublicAPI">
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="RestLogLogic.Start(sb);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="RestApiKeyLogic.Start(sb);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="sb.Schema.Settings.FieldAttributes((RestLogEntity a) => a.User).Replace(new ImplementedByAttribute(typeof(UserEntity)));"/>
<RemoveLine Path="RRSP.React\App\Layout.tsx" From="<Nav.Item> {/*Swagger*/}" To="</Nav.Item> {/*Swagger*/}"/>
<RemoveLine Path="RRSP.React\App\Layout.tsx" From="function handleSwaggerClick(e: React.MouseEvent<any>) {" To="} //Swagger"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as RestClient from "@extensions/Rest/RestClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="RestClient.start({ routes });"/>
<RemoveFiles DependsOn="ExampleEntities" Path="RRSP.React\PublicAPI\CatalogController.cs" />
<RemoveLine Path="RRSP.React\Startup.cs" From="using Swashbuckle.AspNetCore.SwaggerGen;" To="using System.Net;"/>
<RemoveLine Path="RRSP.React\Startup.cs" From="public class ErrorResponsesOperationFilter : IOperationFilter" To="} //Swagger Attributes"/>
<RemoveLine Path="RRSP.React\Startup.cs" From="//https://docs.microsoft.com/en-us/aspnet/core/tutorials/getting-started-with-swashbuckle?view=aspnetcore-2.1&tabs=visual-studio%2Cvisual-studio-xml" To="}); //Swagger Services"/>
<RemoveLine Path="RRSP.React\Startup.cs" From="//Enable middleware to serve generated Swagger as a JSON endpoint." To="});//Swagger Configure"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="RestServer.Start(app);"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="RestLogServer.Start(app);"/>
</Module>
<Module Name="Predictor">
<RemoveLine Path="RRSP.Entities\ApplicationConfiguration.cs" From="/*Predictor*/" To="public string PredictorModelFolder { get; set; }"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Load\RRSPMigrations.cs" Line="ImportPredictor,"/>
<RemoveLine Path="RRSP.Load\RRSPMigrations.cs" Line="PredictorModelFolder = @"c:/RRSP/PredictorModels""/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Load\RRSPMigrations.cs" From="public static void ImportPredictor()" To="}//ImportPredictor"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Load\Program.cs" Line="{"TP", TrainPredictor},"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Load\Program.cs" From="static void TrainPredictor()" To="}//TrainPredictor"/>
<RemoveLine Path="RRSP.Load\RRSP.Load.csproj" Line="<PackageReference Include="CNTK.CPUOnly" Version="2.7.0" />"/>
<RemoveLine Path="RRSP.React\RRSP.React.csproj" Line="<PackageReference Include="CNTK.CPUOnly" Version="2.7.0" />"/>
" <RemoveLine Path="RRSP.Logic\RRSP.Logic.csproj" Line="<ProjectReference Include="..\Extensions\Signum.Engine.MachineLearning.CNTK\Signum.Engine.MachineLearning.CNTK.csproj" />"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="using Signum.Engine.MachineLearning.CNTK;"/>
<RemoveLine Path="RRSP.Logic\Starter.cs"
From="PredictorLogic.Start(sb, () => new FileTypeAlgorithm(f => new PrefixPair(Starter.Configuration.Value.Folders.PredictorModelFolder)));"
To="PredictorLogic.RegisterAlgorithm(CNTKPredictorAlgorithm.NeuralNetwork, new CNTKNeuralNetworkPredictorAlgorithm());"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="PredictorLogic.IgnorePinned(sb);" />
<RemoveLine Path="RRSP.Logic\Starter.cs" DependsOn="ExampleEntities" Line="PredictorLogic.RegisterPublication(ProductPredictorPublication.MonthlySales, new PublicationSettings(typeof(OrderEntity)));"/>
<RemoveSpanInLines Path="RRSP.Logic\Starter.cs" Span=", typeof(AutoconfigureNeuralNetworkEntity)"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as PredictorClient from "@extensions/MachineLearning/PredictorClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="PredictorClient.start({ routes });"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Entities\Product.cs" From="[AutoInit]//Predictor" To="}//Predictor"/>
<RemoveFiles DependsOn="ExampleEntities" Path="RRSP.React\App\RRSP\SalesEstimationController.cs"/>
<RemoveFiles DependsOn="ExampleEntities" Path="RRSP.React\App\RRSP\Templates\SalesEstimation.tsx"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.React\App\RRSP\Templates\Product.tsx" Line="import SalesEstimation from './SalesEstimation';"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.React\App\RRSP\Templates\Product.tsx" Line="<SalesEstimation ctx={ctx} />"/>
<RemoveProjectReference Path="Extensions\Signum.Engine.MachineLearning.CNTK\Signum.Engine.MachineLearning.CNTK.csproj"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="PredictorServer.Start(app);"/>
</Module>
<Module Name="Dynamic">
<RemoveFiles Path="RRSP.Logic\DynamicLogicStarter.cs" />
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="StartParameters.IgnoredDatabaseMismatches = new List<Exception>();"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="StartParameters.IgnoredCodeErrors = new List<Exception>();"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" From="DynamicLogicStarter.Start(sb);" To="DynamicLogic.BeforeSchema(sb);"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" From="DynamicLogic.StartDynamicModules(sb);" To="DynamicLogic.RegisterExceptionIfAny();"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" From="if (type.Namespace == DynamicCode.CodeGenEntitiesNamespace)" To="return "codegen";"/>
<RemoveLine Path="RRSP.React\App\Main.tsx"
From="import * as DynamicClient from "@extensions/Dynamic/DynamicClient""
To="import * as DynamicViewClient from "@extensions/Dynamic/DynamicViewClient""/>
<RemoveLine Path="RRSP.React\App\Main.tsx"
From="DynamicClient.start({ routes });"
To="DynamicViewClient.start({ routes });"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="using Signum.React.Dynamic;"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="using Signum.Entities.Dynamic;"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="DynamicCode.CodeGenDirectory = env.ContentRootPath + "/CodeGen";"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="DynamicServer.Start(app);"/>
</Module>
<Module Name="Workflow">
<RemoveLine Path="RRSP.Entities\ApplicationConfiguration.cs" From="/*Workflow*/" To="public WorkflowConfigurationEmbedded Workflow { get; set; }"/>
<RemoveLine Path="RRSP.Logic\Starter.cs" Line="WorkflowLogicStarter.Start(sb, () => Starter.Configuration.Value.Workflow);"/>
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="import * as WorkflowClient from "@extensions/Workflow/WorkflowClient"" />
<RemoveLine Path="RRSP.React\App\Main.tsx" Line="WorkflowClient.start({ routes });"/>
<RemoveLine Path="RRSP.React\App\Layout.tsx" Line="import WorkflowDropdown from "@extensions/Workflow/Workflow/WorkflowDropdown""/>
<RemoveLine Path="RRSP.React\App\Layout.tsx" Line="<WorkflowDropdown />"/>
<RemoveLine Path="RRSP.React\Startup.cs" Line="WorkflowServer.Start(app);"/>
<RemoveLine Path="RRSP.Load\RRSPMigrations.cs" From="Workflow = new WorkflowConfigurationEmbedded" To="}, //Workflow"/>
<RemoveLine Path="RRSP.Test.Environment\RRSPEnvironment.cs" From="Workflow = new WorkflowConfigurationEmbedded" To="}, //Workflow"/>
<RemoveLine Path="RRSP.React\package.json" Line=""bpmn-js": "5.0.4","/>
<RemoveLine Path="RRSP.React\package.json" Line=""min-dash": "3.5.1","/>
<RemoveLine Path="RRSP.React\package.json" Line=""diagram-js-minimap": "2.0.1","/>
</Module>
<Module Name="Test.Environment">
<RemoveFiles Path="RRSP.Test.Environment"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Test.Environment\RRSPEnvironment.cs"
From="internal static void LoadEmployees()"
To="} //LoadEmployees" />
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Test.Environment\RRSPEnvironment.cs"
From="internal static void LoadProducts()"
To="}//LoadShippers" />
<RemoveFiles DependsOn="ExampleEntities" Path="RRSP.Test.Environment\RRSPExtensions.cs" />
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Test.Environment\EnvironmentTest.cs" Line="RRSPEnvironment.LoadEmployees();"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Test.Environment\EnvironmentTest.cs" Line="RRSPEnvironment.LoadProducts();"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Test.Environment\EnvironmentTest.cs" Line="RRSPEnvironment.LoadCustomers();"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Test.Environment\EnvironmentTest.cs" Line="RRSPEnvironment.LoadShippers();"/>
</Module>
<Module Name="Test.Logic" DependsOn="Test.Environment">
<RemoveFiles Path="RRSP.Test.Logic"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Test.Logic\OrderTest.cs" From="[Fact]" To="}//OrderTestExample"/>
</Module>vp
<Module Name="Test.React" DependsOn="Test.Environment">
<RemoveFiles Path="RRSP.Test.React"/>
<RemoveLine DependsOn="ExampleEntities" Path="RRSP.Test.React\OrderReactTest.cs" From="[Fact]" To="}//OrderReactTestExample"/>
<RemoveProjectReference Path="Extensions\Signum.React.Extensions.Selenium\Signum.React.Extensions.Selenium.csproj"/>
</Module>
</Modules>
<Projects>
<Project Path ="RRSP.Entities\RRSP.Entities.csproj"/>
<Project Path ="RRSP.Load\RRSP.Load.csproj"/>
<Project Path ="RRSP.Logic\RRSP.Logic.csproj"/>
<Project Path ="RRSP.React\RRSP.React.csproj"/>
<Project Path ="RRSP.Test.Environment\RRSP.Test.Environment.csproj"/>
<Project Path ="RRSP.Test.Logic\RRSP.Test.Logic.csproj"/>
<Project Path ="RRSP.Test.React\RRSP.Test.React.csproj"/>
</Projects>
<Solutions>
<Solution Path="RRSP.sln" />
</Solutions>
</File>