Piotr Puszkiewicz
2fbafe6f3f
Remove StreamForwarder from CLI tests ( #4936 )
...
* WiP
* Replace StreamForwarder with OutputDataReceived
* Add build logging around test execution
* add newlines
* Add handling for the null terminator while maintaining empty lines
* Extra Diag
* Verbose logging for VS Test Console
* Fix asset file locking tests
* Add testcommand timeout + improve dotnet-new tests
* WiP
* Welcome, JoSequ!
* Fix failing tests
* Clean out diagnostics writelines
* self-PR1
2016-12-13 14:15:35 -08:00
Justin Goshi
2b7e9b6524
Clean up sln reader/writer ( #5005 )
2016-12-13 06:45:00 -10:00
Zlatko Knezevic
d335b5de40
Changing dotnet-test options ( #4987 )
...
In Preview 3, the `dotnet test` options were not aligned with the CLI's
adopted format. This PR changes the options to be aligned. Where
possible/applicable, I have shortened the long options to a meaningful
mnemonic short version.
Fixes #4960
2016-12-12 23:29:29 -08:00
Livar
1a49787a1f
Merge pull request #4993 from livarcocc/cyclic_dependency_test
...
Adding a test that validates CLI templates don't depend on CLI packages.
2016-12-12 15:48:41 -08:00
Livar Cunha
e1965327e0
Adding a test that restores all c# templates and checks that none of them depend on a package produced by the CLI. I had to write this as a single test for all templates because it cuts the test time in about half to restore all the packages at once to the same folder than to clean and restore again everytime per template.
2016-12-09 16:11:57 -08:00
Livar
bd590f51e6
Emitting PackageId whenever we emit AssemblyName. We need to do this to preserve the behavior from PJ where the package id matched the containing PJ folder name. In MSBuild, PackageId will match AssemblyName, unless it is explicitly specified. ( #4990 )
2016-12-09 16:10:16 -08:00
Krzysztof Wicher
8eaec8715b
Merge pull request #4972 from krwq/p2p-compat-check
...
add compat checks to dotnet add
2016-12-09 15:32:15 -08:00
Krzysztof Wicher
524fe3cb6b
apply review feedback
2016-12-09 12:11:11 -08:00
Livar
08527184b2
Merge pull request #4979 from livarcocc/migrate_pj_without_frameworks
...
Show proper error message when migrating PJ without frameworks section.
2016-12-09 10:14:22 -08:00
Piotr Puszkiewicz
70c8ecbf16
Merge branch 'rel/1.0.0' into migrate_pj_without_frameworks
2016-12-09 00:30:36 -08:00
Livar
1fd99f1588
Merge rel/1.0.0-preview4 back into rel/1.0.0 ( #4974 )
...
* Updating the preview4 channel to rel-1.0.0-preview4
* Add more xlf files for new strings
* bundle fsharp sdk, only Sdk directory is required
* align f# console proj
* align f# lib template
* align f# mstest template
* align f# xunit template
* align f# web template
* fix mstest package version, aligned to c#
* remove unused directories from bundled sdks
* Adding a SdkNugetVersion property when invoking dotnet pack on test packages so that test packages can reference exact packages. We need that because of https://github.com/NuGet/Home/issues/4063 . Without it, pack creates the nuspec with a version like 1.0.0-version-, instead of 1.0.0-version-<version_used_in_build>, which leads to problems when restoring the tool. Like, it ends up restoring to the closest version of the package (oldest), instead of the latest.
* Update web template for Web SDK 154 (#4948 )
* Update WebSDK version
* Update web template to get rid of globs
https://github.com/aspnet/Templates/pull/735
* MSBuild to 15.1.458 (#4950 )
* Adding MigrateWebSdkRule to the DefaultMigrationRuleSet (#4963 )
* Adding MigrateWebSdkRule to the DefaultMigrationRuleSet and adding a E2E test to cover it.
* Do not migrate compile and EmbeddedResources for web application, because those are included in the Web Sdk already.
* Addressing code review comments
2016-12-09 00:30:02 -08:00
Livar Cunha
9bddb5bac7
Addressing code review comments.
2016-12-08 20:06:55 -08:00
Livar Cunha
bb1bceb8bb
When we had a project.json without frameworks, we were failing to show the appropriate error message because when we were generating the error message itself we tried to access the project context (which requires a framework in the PJ). This fix makes the ProjectContext optional to add the migration error.
2016-12-08 19:53:35 -08:00
Krzysztof Wicher
9a8d158e09
add test coverage
2016-12-08 16:23:21 -08:00
Krzysztof Wicher
21993e0129
fix dotnet-remove-p2p tests
2016-12-08 15:04:32 -08:00
Krzysztof Wicher
2d38aaa6e1
fix dotnet-add-p2p tests
2016-12-08 14:56:31 -08:00
Krzysztof Wicher
84e4da57cc
add compat checks to dotnet add
2016-12-08 13:06:12 -08:00
Livar
355b6233cb
Merge pull request #4944 from vsccarl/restoreLoc
...
Fixed a missing interpolation operator
2016-12-07 14:42:47 -08:00
Justin Goshi
0831316321
Allow migration of sln files ( #4949 )
...
* WIP Migrate sln files
* WIP add reference to redist
* Adding tests and fixing a few bugs
* Fix some tests
* Remove use of DeepClone
* Fix test build errors
* Fix more tests
2016-12-07 11:49:15 -10:00
Krzysztof Wicher
79e6126b2a
add dotnet list p2ps ( #4929 )
...
* add stub for dotnet list p2ps
* apply review feedback
* PR feedback: consistent method modifiers
* apply missed review feedback
* add test coverage and do not treat no p2ps as error
* move private methods to the bottom, rename weird res name
2016-12-07 12:56:27 -08:00
Piotr Puszkiewicz
15e86d8c58
Merge branch 'rel/1.0.0' into restoreLoc
2016-12-07 00:51:53 -08:00
Scott Carlton
d29925a689
Fixed spacing for some strings ( #4943 )
...
Some strings lost a space before .NET for some reason. Fixed now.
2016-12-07 00:46:40 -08:00
Scott Carlton
3890acd8da
Fixed a missing interpolation operator
2016-12-06 10:04:11 -08:00
Livar
7b109e4b53
Merge pull request #4934 from livarcocc/generateRuntimeConfigurationFiles_for_migrated_tests
...
Adding GenerateRuntimeConfigurationFiles when migrating a test project.
2016-12-05 22:12:27 -08:00
Livar Cunha
c94934dfc5
Replacing snake casing with Camel casing for GivenThatIWantToMigrateBuildOptions. At some point, I will be able to change them all.
2016-12-05 20:34:11 -08:00
Livar Cunha
9d96bf8c20
Adding GenerateRuntimeConfigurationFiles when migrating a test project.
2016-12-05 18:23:34 -08:00
Livar
86272a8812
Merge pull request #4928 from piotrpMSFT/piotrpMSFT/issues/3527/disableVsoTests
...
Allow CLI CI servers to opt out of test
2016-12-05 15:47:47 -08:00
Livar
d0e882bd91
Merge pull request #4926 from piotrpMSFT/piotrpMSFT/issues/4381/removetests
...
Remove tests affected by https://github.com/dotnet/cli/issues/4381
2016-12-05 15:47:31 -08:00
Livar
23fb676f2a
Merge pull request #4931 from livarcocc/change_to_preview5
...
Updating the branding of rel/1.0.0 to preview5.
2016-12-05 15:47:08 -08:00
Nick Guerrera
d1ffd87edd
Merge pull request #4923 from nguerrera/xlf2
...
Add more xlf files for new strings
2016-12-05 14:57:21 -08:00
Livar Cunha
de9ae38375
Updating the branding of rel/1.0.0 to preview5.
2016-12-05 14:47:16 -08:00
Piotr Puszkiewicz
e9b8507183
Allow CLI CI servers to opt out of test
2016-12-05 13:36:35 -08:00
Nick Guerrera
a41b3d936b
Add more xlf files for new strings
2016-12-05 13:12:48 -08:00
Livar
7a0d3e255a
Merge pull request #4924 from livarcocc/fix_pkg_installer_msg
...
Removing an extra 'the' a the welcome message of the pkg installer.
2016-12-05 13:12:47 -08:00
Livar
0ffa77a76b
Merge pull request #4925 from livarcocc/remove_manual_dependency
...
Remove the dependency to System.Runtime.Serialization.Xml
2016-12-05 13:12:31 -08:00
Livar
2e6cc71286
Merge pull request #4903 from vsccarl/LocAddCommand
...
Localization changes for dotnet-add and dotnet-add-p2p
2016-12-05 13:09:19 -08:00
Livar
7ee59f8b4d
Merge pull request #4902 from vsccarl/LocNew
...
Localization for dotnet-new command
2016-12-05 12:38:01 -08:00
Livar
7de6c8d650
Merge pull request #4915 from mlorbetske/dev/mlorbe/UpdateCSharpWebTemplatesForSdkAttribute
...
Adjust the C# web template for the SDK attribute
2016-12-05 12:37:18 -08:00
Piotr Puszkiewicz
7eb87f3397
Remove tests affected by https://github.com/dotnet/cli/issues/4381
2016-12-05 12:23:29 -08:00
Scott Carlton
0804055422
Added back SpecifyAtLeastOneReferenceToAdd
2016-12-05 12:00:12 -08:00
Livar Cunha
6e65611fd9
Remove the dependency to System.Runtime.Serialization.Xml now that MSBuild dependencies are correct.
2016-12-05 11:59:58 -08:00
Livar Cunha
63415ec888
Removing an extra 'the' a the welcome message of the pkg installer.
2016-12-05 11:32:04 -08:00
Scott Carlton
e5954ca4f0
More string.Format fixes
2016-12-05 11:09:05 -08:00
Scott Carlton
11ea49dc7c
added a string.Format
2016-12-05 11:04:19 -08:00
Scott Carlton
464f2d9a6c
Updated wrong localizableStrings reference
2016-12-05 10:58:47 -08:00
Piotr Puszkiewicz
337becdefd
Merge branch 'rel/1.0.0' into LocAddCommand
2016-12-05 10:53:52 -08:00
Scott Carlton
65a3d0e500
More string changes.
2016-12-05 10:47:10 -08:00
Scott Carlton
5935b9bea7
More string changes
2016-12-05 10:47:05 -08:00
Scott Carlton
2554aeda89
Fixed strings
2016-12-05 10:24:11 -08:00
Scott Carlton
c5955743d8
Fixed broken up strings
2016-12-05 10:23:34 -08:00