-
Notifications
You must be signed in to change notification settings - Fork 256
New issue
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
Support $(RuntimeIdentifier) #3641
Milestone
Comments
emgarten
added a commit
to NuGet/NuGet.Client
that referenced
this issue
Oct 11, 2016
Framework conditions for targets/props are added only when a project uses cross targeting. For scenarios with a single framework under $(TargetFramework) buildCrossTargeting will be left out and there will be no framework conditions to block the imports. In addition to this a new property has been added to allow control over package imports: ExcludeRestorePackageImports. This flag is used at restore time to avoid imports from packages changing the inputs to restore, without this it is possible to get different results between the first and second restore. This change also contains support for nooping when writing out targets/props files. Currently the check is a simple string compare on the files since these files are small. Nooping is now a major benefit since all NETCore projects reference the SDK package, without nooping on the targets/props files MSBuild will always end up rebuilding everything for NETCore solutions. Fixes NuGet/Home#3588 Fixes NuGet/Home#3637 Fixes NuGet/Home#3604 Fixes NuGet/Home#3641 Fixes NuGet/Home#3199
emgarten
added a commit
to NuGet/NuGet.Client
that referenced
this issue
Oct 11, 2016
Framework conditions for targets/props are added only when a project uses cross targeting. For scenarios with a single framework under $(TargetFramework) buildCrossTargeting will be left out and there will be no framework conditions to block the imports. In addition to this a new property has been added to allow control over package imports: ExcludeRestorePackageImports. This flag is used at restore time to avoid imports from packages changing the inputs to restore, without this it is possible to get different results between the first and second restore. This change also contains support for nooping when writing out targets/props files. Currently the check is a simple string compare on the files since these files are small. Nooping is now a major benefit since all NETCore projects reference the SDK package, without nooping on the targets/props files MSBuild will always end up rebuilding everything for NETCore solutions. Fixes NuGet/Home#3588 Fixes NuGet/Home#3637 Fixes NuGet/Home#3604 Fixes NuGet/Home#3641 Fixes NuGet/Home#3199
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add support for$(RuntimeIdentifier) in addition to $ (RuntimeIdentifiers)
The text was updated successfully, but these errors were encountered: