Skip to content

Commit 978b752

Browse files
committed
Generic package name
1 parent 7ec05b9 commit 978b752

22 files changed

+30
-30
lines changed

src/SDK/Language/DotNet.php

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -334,92 +334,92 @@ public function getFiles(): array
334334
[
335335
'scope' => 'default',
336336
'destination' => '{{ spec.title | caseUcfirst }}.sln',
337-
'template' => 'dotnet/Appwrite.sln',
337+
'template' => 'dotnet/Package.sln',
338338
],
339339
[
340340
'scope' => 'default',
341341
'destination' => '{{ spec.title | caseUcfirst }}/{{ spec.title | caseUcfirst }}.csproj',
342-
'template' => 'dotnet/Appwrite/Appwrite.csproj.twig',
342+
'template' => 'dotnet/Package/Package.csproj.twig',
343343
],
344344
[
345345
'scope' => 'default',
346346
'destination' => '{{ spec.title | caseUcfirst }}/Client.cs',
347-
'template' => 'dotnet/Appwrite/Client.cs.twig',
347+
'template' => 'dotnet/Package/Client.cs.twig',
348348
],
349349
[
350350
'scope' => 'default',
351351
'destination' => '{{ spec.title | caseUcfirst }}/{{ spec.title | caseUcfirst }}Exception.cs',
352-
'template' => 'dotnet/Appwrite/Exception.cs.twig',
352+
'template' => 'dotnet/Package/Exception.cs.twig',
353353
],
354354
[
355355
'scope' => 'default',
356356
'destination' => '{{ spec.title | caseUcfirst }}/ID.cs',
357-
'template' => 'dotnet/Appwrite/ID.cs.twig',
357+
'template' => 'dotnet/Package/ID.cs.twig',
358358
],
359359
[
360360
'scope' => 'default',
361361
'destination' => '{{ spec.title | caseUcfirst }}/Permission.cs',
362-
'template' => 'dotnet/Appwrite/Permission.cs.twig',
362+
'template' => 'dotnet/Package/Permission.cs.twig',
363363
],
364364
[
365365
'scope' => 'default',
366366
'destination' => '{{ spec.title | caseUcfirst }}/Query.cs',
367-
'template' => 'dotnet/Appwrite/Query.cs.twig',
367+
'template' => 'dotnet/Package/Query.cs.twig',
368368
],
369369
[
370370
'scope' => 'default',
371371
'destination' => '{{ spec.title | caseUcfirst }}/Role.cs',
372-
'template' => 'dotnet/Appwrite/Role.cs.twig',
372+
'template' => 'dotnet/Package/Role.cs.twig',
373373
],
374374
[
375375
'scope' => 'default',
376376
'destination' => '{{ spec.title | caseUcfirst }}/Converters/ValueClassConverter.cs',
377-
'template' => 'dotnet/Appwrite/Converters/ValueClassConverter.cs.twig',
377+
'template' => 'dotnet/Package/Converters/ValueClassConverter.cs.twig',
378378
],
379379
[
380380
'scope' => 'default',
381381
'destination' => '{{ spec.title | caseUcfirst }}/Extensions/Extensions.cs',
382-
'template' => 'dotnet/Appwrite/Extensions/Extensions.cs.twig',
382+
'template' => 'dotnet/Package/Extensions/Extensions.cs.twig',
383383
],
384384
[
385385
'scope' => 'default',
386386
'destination' => '{{ spec.title | caseUcfirst }}/Models/OrderType.cs',
387-
'template' => 'dotnet/Appwrite/Models/OrderType.cs.twig',
387+
'template' => 'dotnet/Package/Models/OrderType.cs.twig',
388388
],
389389
[
390390
'scope' => 'default',
391391
'destination' => '{{ spec.title | caseUcfirst }}/Models/UploadProgress.cs',
392-
'template' => 'dotnet/Appwrite/Models/UploadProgress.cs.twig',
392+
'template' => 'dotnet/Package/Models/UploadProgress.cs.twig',
393393
],
394394
[
395395
'scope' => 'default',
396396
'destination' => '{{ spec.title | caseUcfirst }}/Models/InputFile.cs',
397-
'template' => 'dotnet/Appwrite/Models/InputFile.cs.twig',
397+
'template' => 'dotnet/Package/Models/InputFile.cs.twig',
398398
],
399399
[
400400
'scope' => 'default',
401401
'destination' => '{{ spec.title | caseUcfirst }}/Services/Service.cs',
402-
'template' => 'dotnet/Appwrite/Services/Service.cs.twig',
402+
'template' => 'dotnet/Package/Services/Service.cs.twig',
403403
],
404404
[
405405
'scope' => 'service',
406406
'destination' => '{{ spec.title | caseUcfirst }}/Services/{{service.name | caseUcfirst}}.cs',
407-
'template' => 'dotnet/Appwrite/Services/ServiceTemplate.cs.twig',
407+
'template' => 'dotnet/Package/Services/ServiceTemplate.cs.twig',
408408
],
409409
[
410410
'scope' => 'definition',
411411
'destination' => '{{ spec.title | caseUcfirst }}/Models/{{ definition.name | caseUcfirst | overrideIdentifier }}.cs',
412-
'template' => 'dotnet/Appwrite/Models/Model.cs.twig',
412+
'template' => 'dotnet/Package/Models/Model.cs.twig',
413413
],
414414
[
415415
'scope' => 'enum',
416416
'destination' => '{{ spec.title | caseUcfirst }}/Enums/{{ enum.name | caseUcfirst | overrideIdentifier }}.cs',
417-
'template' => 'dotnet/Appwrite/Enums/Enum.cs.twig',
417+
'template' => 'dotnet/Package/Enums/Enum.cs.twig',
418418
],
419419
[
420420
'scope' => 'default',
421421
'destination' => '{{ spec.title | caseUcfirst }}/Enums/IEnum.cs',
422-
'template' => 'dotnet/Appwrite/Enums/IEnum.cs.twig',
422+
'template' => 'dotnet/Package/Enums/IEnum.cs.twig',
423423
]
424424
];
425425
}
File renamed without changes.

0 commit comments

Comments
 (0)