Delete MARKERS.md
I need to redo this Signed-off-by: Debug <49997488+DebugOk@users.noreply.github.com>
This commit is contained in:
parent
468dde7019
commit
e2f79bde5b
45
MARKERS.md
45
MARKERS.md
|
|
@ -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.
|
||||
Loading…
Reference in New Issue