Pranav K
8ff0214b73
Updating to release NuGet.config
2015-05-27 16:26:44 -07:00
Pranav K
cf132e1057
Merge branch 'release' into dev
2015-05-27 16:26:21 -07:00
Pranav K
a5212d0942
Updating to release NuGet.config
2015-05-27 16:26:18 -07:00
Pranav K
6d07af17ec
Merge branch 'release' into dev
2015-05-27 16:24:30 -07:00
Pranav K
cb0cde61aa
Updating to release NuGet.config
2015-05-27 16:24:27 -07:00
Pranav K
5c32d3dab8
Merge branch 'release' into dev
2015-05-27 16:22:56 -07:00
Pranav K
fd07e666e4
Updating to release NuGet.config
2015-05-27 16:22:53 -07:00
Pranav K
40dcd0a6cc
Merge branch 'release' into dev
2015-05-27 16:13:39 -07:00
Pranav K
9cd9b6a48d
Updating to release NuGet.config
2015-05-27 16:13:36 -07:00
Pranav K
3673ea6e83
Merge branch 'release' into dev
2015-05-27 16:07:55 -07:00
Pranav K
7bedbdfbab
Updating to release NuGet.config
2015-05-27 16:07:51 -07:00
Pranav K
9aa703a59e
Merge branch 'release' into dev
2015-05-27 16:02:26 -07:00
Pranav K
eeff9da879
Updating to release NuGet.config
2015-05-27 16:01:44 -07:00
Wei Wang
19333dc2dc
Update dnvm scripts
2015-05-27 11:27:46 -07:00
Kiran Challa
f2d9594799
Fix build break
2015-05-26 15:42:51 -07:00
Kiran Challa
116593f091
Fixed test
2015-05-26 15:22:36 -07:00
Kiran Challa
146cf8e095
Fixed test
2015-05-26 15:18:21 -07:00
Kiran Challa
33cc8b06c9
React to Security change where instead of 401 Unauthorized, 403 Forbidden is going to be returned for authenticated users when trying to access unauthorized resource.
2015-05-26 14:54:55 -07:00
Arthur Vickers
8a8332f9f1
React to DbContextOptions name change
2015-05-26 11:37:08 -07:00
Arthur Vickers
760be0c77c
React to DbContextOptions name change
2015-05-26 11:34:48 -07:00
ASP.NET Push Bot
d7215043a2
⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh
...
Source: AspNet/kvm@47ac353e36
2015-05-26 11:19:00 -07:00
ASP.NET Push Bot
85164e724b
⬆️ dnvm.ps1, dnvm.cmd, dnvm.sh
...
Source: AspNet/kvm@73a4914c1f
2015-05-25 16:00:17 -07:00
Kai Ruhnau
a80b5b4f3d
Disabled two tests failing on Mono
2015-05-22 23:48:51 +02:00
Hao Kung
e54d088c46
Fix issue with 401->403 not working with AutomaticAuthentication
2015-05-22 14:48:24 -07:00
Wei Wang
82333e1627
React to renaming "k-crossgen.cmd" to "dnx-crossgen.cmd"
2015-05-22 13:41:21 -07:00
Kiran Challa
94a2b00d9a
React to 'form' tag helper changes
2015-05-22 12:46:00 -07:00
Kiran Challa
24be0672fd
React to MVC ViewComponent's Activate changes
2015-05-22 12:16:15 -07:00
Kirthi Krishnamraju
f09dec1438
fix build break
2015-05-22 06:59:23 -07:00
Kirthi Krishnamraju
54ddefe88c
React to aspnet/Configuration #194
2015-05-22 06:14:17 -07:00
Kirthi Krishnamraju
d19b265a7f
React to aspnet/Configuration #194
2015-05-22 05:54:03 -07:00
Kirthi Krishnamraju
717b7a090c
React to aspnet/Configuration #194
2015-05-22 05:53:20 -07:00
Kirthi Krishnamraju
58c7eb1826
React to aspnet/Configuration #194
2015-05-22 05:28:05 -07:00
Kirthi Krishnamraju
0abe9e2b1f
React to aspnet/Configuration #194
2015-05-22 05:21:32 -07:00
Kirthi Krishnamraju
4289542996
React to aspnet/Configuration #194
2015-05-22 04:58:56 -07:00
Ryan Nowak
c428ddffa3
React to removal of [Activate] for ViewComponents
2015-05-21 23:03:30 -07:00
Ryan Nowak
144c1d3cf4
Fix #2151 - Part 4 remove [Activate] support from controllers.
...
This change completely removes [Activate]. In a controller, you should
constructor injection or [FromServices] to access services.
To access context items (ActionContext, ActionBindingContext, root
ViewDataDictionary) you should use the respected attribute class.
We'd like to consider streamlining this further in the future by getting
down to a single injectable context for controllers, but for now this will
have to do.
2015-05-21 22:57:56 -07:00
Ryan Nowak
af5322e2ce
Part of #2151 - Remove [Activate] from TagHelpers
...
This change removes [Activate] support from TagHelpers. TagHelpers which
need access to context should use [ViewContext] to have it injected. To
access services, use constructor injection.
2015-05-21 22:57:51 -07:00
Ryan Nowak
b393191cff
Part of #2151 - Remove [Activate] from ViewComponents
...
This change removes [Activate] from ViewComponents. Accessing context
should be done through [ViewComponentContext]. Accessing services should
be done though constructor injection.
2015-05-21 22:57:45 -07:00
Ryan Nowak
92dbd8923b
Fix #2582 - Remove @inject dependency on [Activate]
...
Removes usage of [Activate] in razor code generation. Razor will now use
it's own special attribute recognized by the Razor activator.
2015-05-21 22:57:39 -07:00
Ryan Nowak
8f38650d1f
Fix #1579 - Bind top-level collections as an empty collection
...
This change treats 'top-level' collection-type models similarly to
top-level POCO model - namely that they will always be instantiated even
if there's no data to put inside.
2015-05-21 22:46:04 -07:00
Ryan Nowak
b64fd7ae39
Fix #2407 - Add back the implicit [Required] for value types
...
This change adds a [Required] client validator when
ModelMetadata.IsRequired == true. The bulk of the changes here are
mechanical updates to test files.
2015-05-21 17:52:25 -07:00
Kiran Challa
9e62751649
Fixed for build break
2015-05-21 16:47:40 -07:00
Kiran Challa
d2f041def9
Fixed test
2015-05-21 16:43:15 -07:00
N. Taylor Mullen
e689863461
Add required attributes to AnchorTagHelper and FormTagHelper.
...
- This involved also adding required attributes with wildcards.
- With this change AnchorTagHelpers and FormTagHelpers should no longer light up on every `<form>` or `<a>` tag.
#2581
2015-05-21 16:42:45 -07:00
Kiran Challa
ddd76e2f4d
Fix for build break(removing reference to non-existing Caching.Distributed package)
2015-05-21 16:28:48 -07:00
N. Taylor Mullen
0e61b49881
Add support for '*' at the end of required attributes.
...
- [TargetElement(Attributes ="prefix-*")] is now supported.
- Added '*' to the list of invalid non whitespace characters in TagHelperDescriptorFactory.
- Modified TagHelperDescriptorProvider to respect suffixed wildcards in TagHelperAttributeDescriptor.Attributes.
- Added tests to validate wildcard required attributes
#361
2015-05-21 15:01:32 -07:00
Kiran Challa
2a321fd622
React to Caching api review changes
2015-05-21 14:44:27 -07:00
moozzyk
e771141eb8
Replacing rimraf in target-dir-clean with non-node.js based solution
...
rimraf needs to pull node.js and is slow.
2015-05-21 14:43:07 -07:00
Damian Edwards
3b02fc8c19
Merge pull request #24 from hishamco/dev
...
Remove unnecessary using directives
2015-05-21 13:59:39 -07:00
Kiran Challa
903885c20d
Reacting to Caching api review changes
2015-05-21 13:28:37 -07:00