Adding .NET Framework 4.7.1 to the target frameworks #38
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.
Adding .NET Framework 4.7.1 to the target frameworks, bumping the version to 1.2.3
Description
Modified the project file to accommodate the .NET Framework 4.7.1 support
Motivation and Context
Current DuoEpicHyperdrive integration runs on old environments, the min support version 4.6.1 of .NET Framework, but Epic overall is fine to target 4.7.1 on our end. The existing dll, targeting netstandard 2.0 has compatibility issues, which can be resolved either with a binding redirect (which requires modification of the files in the customer's app folder) or the current solution, which is implementing the binding in the code, but needs a dll, specifically targeting version 4.7.1, otherwise there are compatibility issues with the System.Text.Json lib and System.Runtime.CompilerServices.Unsafe.
How Has This Been Tested?
Using the local builds and running with the Epic's test harness app doesn't throw incompatibility exceptions when testing.
Types of Changes