mirror of
https://github.com/Ellpeck/Contentless.git
synced 2024-11-21 15:03:30 +01:00
fixed docs to account for new patterns
This commit is contained in:
parent
7803628ece
commit
d5640bc250
2 changed files with 11 additions and 11 deletions
14
README.md
14
README.md
|
@ -26,10 +26,10 @@ If you want to change the way Contentless works, you can use a configuration fil
|
|||
{
|
||||
// The list of files that should be excluded.
|
||||
// Can use simple glob-style patterns including "*" to match any number of any character, and "?" to match any single character.
|
||||
// Default: ["obj/", "bin/"]
|
||||
// Default: ["obj/*", "bin/*"]
|
||||
"exclude": [
|
||||
"obj/",
|
||||
"bin/"
|
||||
"obj/*",
|
||||
"bin/*"
|
||||
],
|
||||
// If any files that were skipped without errors should be logged (Files that already have entries or files that were ignored)
|
||||
// Default: true
|
||||
|
@ -39,20 +39,20 @@ If you want to change the way Contentless works, you can use a configuration fil
|
|||
// Default: {}
|
||||
"overrides": {
|
||||
// Example: Make all files matching ".json" use the importer "JsonImporter"
|
||||
".json": {
|
||||
"*/*.json": {
|
||||
"importer": "JsonImporter"
|
||||
},
|
||||
// Example: Specifying both an importer and a processor
|
||||
".ogg": {
|
||||
"*/*.ogg": {
|
||||
"importer": "OggImporter",
|
||||
"processor": "SongProcessor"
|
||||
},
|
||||
// Example: Only specifying a processor
|
||||
".wav": {
|
||||
"*/*.wav": {
|
||||
"processor": "SoundEffectProcessor"
|
||||
},
|
||||
// Example: Setting a file to the Copy build action
|
||||
".txt": {
|
||||
"*/*.txt": {
|
||||
"copy": true
|
||||
},
|
||||
// Example: Adding processor parameters for files
|
||||
|
|
|
@ -8,17 +8,17 @@
|
|||
"logSkipped": true,
|
||||
"references": ["MonoGame.Extended.Content.Pipeline"],
|
||||
"overrides": {
|
||||
"Copy.*": {
|
||||
"*/Copy.*": {
|
||||
"copy": true
|
||||
},
|
||||
".json": {
|
||||
"*/*.json": {
|
||||
"copy": true
|
||||
},
|
||||
".ogg": {
|
||||
"*/*.ogg": {
|
||||
"importer": "OggImporter",
|
||||
"processor": "SongProcessor"
|
||||
},
|
||||
".png": {
|
||||
"*/*.png": {
|
||||
"processorParams": {
|
||||
"TextureFormat": "NoChange"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue