-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set 'BypassFrameworkInstallChecks' MSBuild property when running on Mono
'BypassFrameworkInstallChecks' allows builds to skip a particularly hacky check in the GetReferenceAssemblyPaths task. This hack affects projects that target a .NET Framework version less than 4.0. Essentially, the hack tries to load a certain assembly from the GAC to "guarantee" that .NET Framework 3.5 SP1 is installed (an old case added specifically for WPF projects). However, we don't include that assembly in our Mono package. So, many Unity projects end up failing the check because they often target much early .NET Framework versions. We can fix that by just skipping the check, which isn't really necessary when we're running on Mono.
- Loading branch information
1 parent
357addb
commit 11ab9d6
Showing
3 changed files
with
27 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters