We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Async streams are a core 3.0-only feature. So in order to support this, I need to experiment with whether I can use something like:
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' or '$(TargetFramework)' == 'netstandard1.0'"> <DefaultItemExcludes>$(DefaultItemExcludes);src\Succinct\Core3.0\*.cs</DefaultItemExcludes> </ItemGroup>
to hide files that are core 3.0-only from the compiler when targeting other targets.
A couple of handy links for the csproj stuff for my reference: https://markheath.net/post/csproj-conditional-references https://stackoverflow.com/questions/43173811/how-do-i-exclude-files-folders-from-a-net-core-standard-project
The text was updated successfully, but these errors were encountered:
DavidArno
No branches or pull requests
Async streams are a core 3.0-only feature. So in order to support this, I need to experiment with whether I can use something like:
to hide files that are core 3.0-only from the compiler when targeting other targets.
A couple of handy links for the csproj stuff for my reference:
https://markheath.net/post/csproj-conditional-references
https://stackoverflow.com/questions/43173811/how-do-i-exclude-files-folders-from-a-net-core-standard-project
The text was updated successfully, but these errors were encountered: