Marcus Schweda

Results 8 comments of Marcus Schweda

I'll look into that next week

> What scenario are you specifically hoping to cater for? We have an inhomogeneous infrastructure of many websites and applications with several domains where the domain registrar won't let me...

I would be OK with something like this: ```json { "folders": [ { "path": "MyLibrary", "name": "🧩 MyLibrary" }, { "path": "MyLibrary.Test", "name": "🧪 MyLibrary.Test" } ], "settings": { "omnisharp.projects":...

Sorry for the misunderstanding. That was not supposed to be a working solution but rather a suggestion for how this problem may be tackled. If we were allowed to specify...

Wie bedauerlich, dass dieses Projekt aufgegeben wurde

> Open Legal Data ist ein nicht-gewinnorientiertes Projekt zur Förderung des freien Zugang zu juristischen Daten. Unser Hauptanliegen ist es technische Mittel zur Verarbeitung und Analyse von juristischen Inhalten, insbesondere...

Need this for endpoints with catch-all route templates, e.g. ```csharp class DocumentsController : Controller { [HttpGet("{**path}")] public Task Download(string path) { // ... } } ``` And then define the...

> @mdschweda it actually works with the following > > ``` > [Get("/{**path}")] > [QueryUriFormat(UriFormat.Unescaped)] > Task GetNext(string path); > > ``` > > You will only have to ensure...