Jeroen Janssen
Jeroen Janssen
@SebastianSchuetze unfortunately I don't have any experience/knowledge with generating the right (and clean) json samplefiles for the unit tests. Is there any documentation/scripts on how to generate those correctly?
@SebastianSchuetze yes, the JSON files that are stored in the vsteam/unit/test/sampleFiles/ (and are used by the unit tests)
We also would like to be able to write tooling that can check/monitor the PR branch policy status, but could not find any documentation/example for this.
Hello, We have an on-premise AzureDevOps Server setup, using Azure Artifacts to mirror our npmjs.org upstream dependencies. This is to prevent our build servers from directly accessing content from the...
@bromix Can you try to put this in the top of your CMakeLists.txt? (I ran into the same issue) Note this might require a fairly recent version of cmake (I...
@mupchurch-verys you should be able to do something like this at the top of your CMakeLists.txt ``` set(CMAKE_TOOLCHAIN_FILE "${CMAKE_CURRENT_SOURCE_DIR}/vcpkg/scripts/buildsystems/vcpkg.cmake") ``` I am using this mechanism at https://github.com/japj/pa-opus-audio/blob/master/CMakeLists.txt#L4 Note that I...
this ticket looks like something I am also looking for in relation to a django 'reverse' use I have at the moment, see also https://docs.djangoproject.com/en/dev/topics/http/urls/#reverse Basically in django I have...
sorry for the late reply, but I have been a bit busy with work. I am going to look at this tomorrow evening and give you feedback then, is that...
Regarding /resource_name/:id/sub_resource_name/:sub_resource_id I think that correctly resembles how I should have modeled my rest api. (I will need to update my server and client to correctly behave that way, but...
With req.params.forum I meant the routing behaviour from http://expressjs.com/guide.html#routing where '/user/:id' ends up as req.params.id. I think it makes sense for the app.resource.path.xxx calls that information in req.params could be...