Darren Schnare
Darren Schnare
Forgot to mention that all my LESS assets have Build Action set to Content. Here's my package list: ``` xml ```
I've tried re-installing Cassette with no success. I've also tried removing the problematic `@reference` line and going to /cassette.axd to attempt to clear the cache, but there's no "Clear Cache"...
I'm having the same issue. Has this been looked at yet?
What's more of a pain to document is destructured arguments: ```ts /** * Call home. * @remarks * This texts Mom a message. * @param message - The message to...
I like this idea, but usually I solve this by giving the template parameters a better name. ```ts class MyClass { public value: TValue constructor (value: TValue) { this.value =...
> The format you are talking about here is _parser-specific_ - on docs.microsoft.com, we've recently switched to [MarkDig](https://github.com/lunet-io/markdig), that handles CommonMark parsing much better. It would be preferable to not...
After review of my suggested change, I believe the range should be this `>=0.41.0
This will also be a problem any time you use `suggestions.map(...)` since React needs a valid `key`.
I'm having this issue with iOS actually. Tried setting styles for `inputIOS` with no dice. ```js const pickerStyles = StyleSheet.create({ inputIOS: { fontSize: 16, paddingVertical: 12, paddingHorizontal: 10, borderWidth: 1,...
I ran into this limitation today myself. Although I needed `prefixItems` and `items` to work together. ```yaml schema: type: object properties: myList: type: array example: [ [{ value: 'my-header' },...