Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Made another target with Windows Universal apps. Looks like these are distinct from the DNXCore targets. Seems there's a lot of confusion still going around about how to do this right. I'm also learning this myself. Refer to : https://oren.codes/2015/07/29/targeting-net-core/
Note that this change isn't complete, as the AsyncRewriter dependency needs to make a similar change to be compatible. But since it's just used as a pre-process step, I was able to successfully get a build out with this once the code was generated.
Note the drop in the version requirement for System.Data.Common. that fixes the:
"Assembly 'Npgsql' with identity 'Npgsql, Version=3.1.0.0, Culture=neutral, PublicKeyToken=5d8b90d52f46fda7' uses 'System.Data.Common, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' which has a higher version than referenced assembly 'System.Data.Common' with identity 'System.Data.Common, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' DataAccess D:\Users\ncoder\code\ChainOfCommand\DataAccess\CSC
"
error for me. Looks like this may be related to this? #834