Commit graph

2971 commits

Author SHA1 Message Date
Eric Erhardt
aea6fc62ac Merge pull request #3061 from eerhardt/FixUpdateDeps
Fix the update-dependencies project so it builds and runs again.
2016-05-16 21:42:02 -05:00
Eric Erhardt
f94d989ba7 Merge pull request #3058 from eerhardt/FixBuildWarnings
Fix warnings in our build projects so VSO powershell scripts don't fail.
2016-05-16 21:30:39 -05:00
Eric Erhardt
da41168a12 Fix the update-dependencies project so it builds and runs again. 2016-05-16 19:10:04 -05:00
Eric Erhardt
14ed7a3e45 Fix warnings in our build projects so VSO powershell scripts don't fail. 2016-05-16 18:30:56 -05:00
Eric Erhardt
b90f5081c9 Merge pull request #3003 from dotnet/brthor/build-separate
Separate Host Build Stage1
2016-05-16 17:25:24 -05:00
Bryan
7bf08c5bd5 Bring Host build into separate project 2016-05-16 14:55:15 -05:00
Pavel Krymets
07b785c183 Merge pull request #2264 from dotnet/pakrym/dc-memory
Optimize dependency context memory usage
2016-05-16 10:50:41 -07:00
Pavel Krymets
c3aa0a5d5a Merge pull request #3033 from dotnet/pakrym/csproj-ref
Copy csproj reference assemblies to build output
2016-05-16 10:30:11 -07:00
Eric Erhardt
864145af6c Merge pull request #3032 from blackdwarf/removecompiledocs
Remove mentions of dotnet-compile
2016-05-16 12:10:52 -05:00
Eric Erhardt
2452982231 Merge pull request #3047 from dotnet/blackdwarf-patch-3
Update known-issues.md
2016-05-16 11:59:09 -05:00
Pavel Krymets
8831e93ddd Copy csproj reference assemblies to build output 2016-05-16 08:41:33 -07:00
Zlatko Knezevic
e5decebfa4 Update known-issues.md
Add instructions on how to symlink `dotnet` for users of zsh until we fix that one.
2016-05-16 08:09:52 -07:00
Zlatko Knezevic
04872cb4b5 Update known-issues.md (#3045)
Add OpenSSL section to the known issues list as per feedback from various community members.
List out the Homebrew step but also show the MacPorts steps.
2016-05-15 20:50:56 -07:00
Richard Lander
13d760c6a4 Remove .nuget dir on uninstall 2016-05-14 23:57:25 -07:00
Richard Lander
48712f9e54 Change to correct variable 2016-05-14 21:46:25 -07:00
Senthil
93233fd496 Merge pull request #3018 from schellap/mxr-hlp
Help message for dotnet
2016-05-14 21:40:47 -07:00
Senthil
547b97a195 Help message for dotnet 2016-05-14 03:35:56 -07:00
Bryan Thornbury
b23feed7c8 debian package uninstallation script (#3027)
* debian package uninstallation script

* Script to remove/uninstall dotnet pkgs from a OSX machine.

* name change of deb uninstall script

* Address PR feedback

Changes to fail the script if the 'pkgutil --forget' command fails.
2016-05-13 20:37:20 -07:00
Eric Erhardt
eb7054c90d Merge pull request #3013 from eerhardt/StreamForwarder
Console.Write() doesn't show output until a newline
2016-05-13 22:09:55 -05:00
Eric Erhardt
c8c8dbb2e7 Merge pull request #3028 from eerhardt/FixPublish
Fix publish CoreHost NuGet packages
2016-05-13 20:26:56 -05:00
Eric Erhardt
c84f41e749 Use Moq framework instead of a concrete class to mock ICommandFactory in dotnet-run.UnitTests. 2016-05-13 20:24:22 -05:00
Eric Erhardt
9b80eda72a Address PR review. 2016-05-13 18:13:34 -05:00
Zlatko Knezevic
2161ab54e1 Remove mentions of dotnet-compile
There were still README.md files in the dotnet-compile and dotnet-compile-csc folders.
There was also a reference to it in dotnet-publish README.md doc. Removed that.

Fix #2622
2016-05-13 14:51:38 -07:00
Bryan Thornbury
66350cacc6 Merge pull request #3025 from dotnet/brthor/3024
Move all return statements to exit 0 in install.ps1
2016-05-13 13:50:50 -07:00
Eric Erhardt
8ecb0a3a19 Merge pull request #3022 from eerhardt/Fix3021
Project.json schema warnings don't get displayed
2016-05-13 15:10:51 -05:00
Eric Erhardt
572d68de7e Fixing where the CoreHost packages are published to the correct version folder.
Also fixing 'PullNupkgFilesFromBlob' target to no longer include the hack looking for the CoreHost packages under a "preview" version folder.

Fix #3012
2016-05-13 14:43:08 -05:00
Eric Erhardt
01b7bb439a Merge remote-tracking branch 'upstream/weshaggard-PublishPackagesToNuget' into FixPublish 2016-05-13 14:02:05 -05:00
Bryan
f0cc32e1ee move all return statements to exit 0 2016-05-13 11:39:28 -07:00
Eric Erhardt
ecdb10591c Project.json schema warnings don't get displayed
When building a project.json that has schema warnings (and other warnings), we are not writing the warnings to the console. This is a regression.

The fix is to add all diagnostic messages to the LibraryManager, which is responsible to hold all the diagnostic messages.

Fix 3021
2016-05-13 13:10:39 -05:00
Eric Erhardt
6bf59ffde6 Console.Write() doesn't show output until a newline
When running an app with `dotnet run`, we are redirecting the standard out and error just to print it out to our standard out and error. However, we are batching the output until we hit a newline, which isn't ideal for console apps.

To fix this, `dotnet run` no longer redirects the standard out and error.

Fix #2777
2016-05-13 09:03:35 -05:00
Eric Erhardt
e68a49e1d5 Merge pull request #3004 from dotnet/nuget-update
Update nuget version to 3.5.0-rc-1285
2016-05-13 08:51:11 -05:00
Sridhar Periyasamy
a6cc2b07dd Update nuget version to 3.5.0-rc-1285
This is required to update the corefx dependencies from RC2 to RC3. Some
of the corefx libs have 'netstandard1.6' as TFM and this version of Nuget
supports that TFM.

Also the 'VersionRange.IncludePrerelease' has been removed from nuget and by
default 'VersionRange.Satisfies' returns true for any prerelease version.
2016-05-12 21:56:56 -07:00
Eric Erhardt
876a67348d Merge pull request #2946 from schellap/rtm-fixes
Make error message better
2016-05-12 13:47:56 -05:00
Eric Erhardt
f515e80029 Merge pull request #2998 from bkoelman/equals-fix
Fixed broken Equals (2)
2016-05-12 12:40:34 -05:00
Pavel Krymets
b8dff69cc1 Revert "Revert "Add performance tests"" (#2820) 2016-05-12 10:33:32 -07:00
Eric Erhardt
418d827d52 Merge pull request #3011 from eerhardt/FixInstallScript
Fix install scripts to deal with content type change.
2016-05-12 11:19:20 -05:00
PiotrP
d906524dec Fix install scripts to deal with content type change. 2016-05-12 10:25:49 -05:00
Eric Erhardt
129fe216be Merge pull request #3001 from eerhardt/Fix2693
dotnet crashes with an unresolved 'platform' dependency.
2016-05-12 09:47:33 -05:00
Senthil
a9a4e04a08 Make error message better 2016-05-11 20:01:13 -07:00
Pavel Krymets
43c638e46d Optimize dependency context memory usage 2016-05-11 16:14:25 -07:00
Eric Erhardt
17175864cf dotnet crashes with an unresolved 'platform' dependency.
Fixed by calling TryGetValue instead of a dictionary indexer when looking up platform dependencies in ProjectContextBuilder.

Fix #2693
2016-05-11 17:32:42 -05:00
Eric Erhardt
6482aa0221 Merge pull request #2990 from svick/docs-path
Corrected path to built dotnet
2016-05-11 16:57:52 -05:00
Bart Koelman
811dfc9bf9 Fixed broken Equals (2) 2016-05-11 23:26:54 +02:00
Eric Erhardt
9b9ddd2e43 Merge pull request #2875 from jasonwilliams200OK/fix/typo
Fix casing of Sha
2016-05-11 14:54:53 -05:00
Petr Onderka
adebb4af6d Corrected path to built dotnet
There is no artifacts\rid\stage2\bin, dotnet is in artifacts\rid\stage2.
2016-05-11 20:28:38 +02:00
Peter Jas
41e9c9e0fc Fix casing of Sha
`Commit Sha: xyz` -> `Commit SHA-1 hash: xyz`  for `dotnet --info` output.
2016-05-11 18:22:43 +00:00
Eric Erhardt
1923b1ffdf Merge pull request #2745 from dotnet/set-content-type-for-versions
set-content-type-for-versions
2016-05-11 13:00:50 -05:00
Eric Erhardt
eec782a6d1 Merge pull request #2870 from dpodder/perf-test-guide
Add README howto for perf tests
2016-05-11 12:57:28 -05:00
Eric Erhardt
04a6573b89 Merge pull request #2932 from dotnet/blackdwarf-patch-2
Update README.md
2016-05-11 12:39:58 -05:00
Eric Erhardt
8013398def Merge pull request #2980 from eerhardt/FixTestCommandErrors
dotnet test and publish failing badly when the project isn't restored.
2016-05-11 11:27:52 -05:00