-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Port CSharpSymbolTests to run on Desktop and CoreCLR. #18471
Merged
agocke
merged 18 commits into
dotnet:master
from
agocke:port-cs-symbol-test-to-portable
Apr 13, 2017
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
37456ea
Port CSharpSymbolTests to run on Desktop and CoreCLR.
agocke 5a3e9ed
Rename CreateCompilationWithMscorlib to CreateStandardCompilation
agocke 24774d2
Add CSharpSymbolTests to CrossPlatform.sln
agocke fcc972c
Change tests to use PortablePdb in emit by default if running on CoreCLR
agocke 06a168b
Remove extension from portable ilasm invocation
agocke e731a54
Use different TPA list delimiter on Unix.
agocke a58fabc
Use ordinal string comparer for sorting
agocke da5ba75
Merge fixups
agocke 7250fc2
Use Dependencies.props to find ref assemblies
agocke 21ddbe5
Respond to PR comments
agocke d3e41e1
Use references for csi from PR comments
agocke 0e641fb
Add comments on why some tests are skipped
agocke 7494b9e
Update vbi.rsp
agocke fce3879
Add link to issue around errors in XML doc comments on CoreCLR
agocke ffd5ac8
Merge remote-tracking branch 'upstream/master' into port-cs-symbol-te…
agocke 3838d1b
Missed a test that should have been skipped
agocke d497f24
Change Roslyn minimum OS X runtime to 10.12
agocke bf9cc72
Require OS X 10.12 for all Mac CI machines
agocke File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -453,6 +453,19 @@ | |
TargetMonikers=".NETFramework,Version=v4.6"> | ||
<Output TaskParameter="ResolvedCopyLocalItems" ItemName="ReferenceCopyLocalPaths" /> | ||
</ResolveNuGetPackageAssets> | ||
|
||
<!-- Desktop tests need to load the Desktop version of the TestUtilities via reflection at runtime without | ||
referencing the assembly at compile time. However, it looks like adding a project-to-project reference | ||
with ReferenceOutputputAssembly=false and Private=true does not copy the assembly to the output | ||
(https://github.com/Microsoft/msbuild/issues/1916). Therefore, we reference the assembly but do the | ||
copying ourselves, by adding the output path of the project (GetTargetPath) manually to the set of copied | ||
assemblies (ReferenceCopyLocalPaths) --> | ||
<MSBuild Projects="$(MSBuildThisFileDirectory)..\..\src\Test\Utilities\Desktop\TestUtilities.Desktop.csproj" | ||
Targets="GetTargetPath" | ||
BuildInParallel="true"> | ||
|
||
<Output TaskParameter="TargetOutputs" ItemName="ReferenceCopyLocalPaths" /> | ||
</MSBuild> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was wondering how you would work around this problem. Can you add a comment documenting what this accomplishes? |
||
</Target> | ||
|
||
<!-- Returns the current build version. Used in .vsixmanifests to substitute our build version into them --> | ||
|
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you know why this changed?