Delete MARKERS.md

I need to redo this

Signed-off-by: Debug <49997488+DebugOk@users.noreply.github.com>
This commit is contained in:
Debug 2024-02-25 00:53:05 +01:00 committed by GitHub
parent 468dde7019
commit e2f79bde5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 45 deletions

View File

@ -1,45 +0,0 @@
# A quick summary of how to mark code files in this repository
## CSharp
All C# code contributed after 17 February, 2024 23:00:00 UTC should contain the following header:
```csharp
/*
* Delta-V - This file is licensed under AGPLv3
* Copyright (c) [Year] Delta-V Contributors
* See AGPLv3.txt for details.
*/
```
For any changes within non Delta-V files, the following marker should be used at the start of the modification
```csharp
/* DeltaV - [Title of changes] - [Description of changes]
This code is licensed under AGPLv3. See AGPLv3.txt */
yourCodeHere();
// End of modified code
```
## Yaml
All Yaml files contributed after 17 February, 2024 23:00:00 UTC should contain the following header:
```yaml
# Delta-V - This file is licensed under AGPLv3
# Copyright (c) [Year] Delta-V Contributors
# See AGPLv3.txt for details.
```
For any changes within non Delta-V files, the following marker should be used at the start of the modification
```yaml
# DeltaV - [Title of changes] - [Description of changes]
# This code is licensed under AGPLv3. See LICENSE
modifiedYaml: "Goes Here"
# End of modified code
```
## Note
Both Space Wizards and Nyanotrasen code is licensed under MIT, and any changes made to their code should be marked as AGPLv3 with the above markers.