Pranav K
79d517483b
Removing PageInstrumentation
...
Fixes #3497
2015-11-25 08:41:21 -08:00
Pranav K
b622a5b0d3
Bump Razor to dotnet5.5
2015-11-23 15:31:59 -08:00
N. Taylor Mullen
a1af85beb7
Remove System beta tag in project.json for coreclr packages.
2015-11-12 12:24:39 -08:00
Cesar Blum Silveira
9dba871108
Strong name everything.
2015-11-03 21:16:49 -08:00
N. Taylor Mullen
faa78a3d91
Transition from `IAssemblyLoadContext` to `AssemblyLoadContext`.
...
- `IAssemblyLoadContext` is a DNX defined type that will eventually go away.
#3365
2015-10-22 16:15:10 -07:00
Pranav K
91aeec95e9
Switching to generations TFMs
2015-10-22 01:20:00 -07:00
Pranav K
f57e180971
Renaming Microsoft.Framework.* -> Microsoft.Extensions.*
2015-10-03 15:44:53 -07:00
Pranav K
a68d9e4cb1
Replace NotNullAttribute with thrown exceptions
2015-09-17 11:56:44 -07:00
Pranav K
2e32ffc004
Use PrecompilationTagHelperTypeResolver to locate TagHelpers during
...
precompilation.
Fixes #2298
2015-09-09 18:25:11 -07:00
Pranav K
6615972162
Adding System.Text.Encoding to project.json to unblock CI
2015-08-26 10:11:27 -07:00
Pranav K
3041dee86d
Modify RazorPreCompileModule to use an instance of memory cache specific
...
to the application's target framework and configuration.
2015-08-25 22:26:16 -07:00
Pranav K
05226a4a55
Refactor ICompilerCache to be instantiated via ICompilerCacheProvider
...
Fixes #2933
2015-08-20 10:54:32 -07:00
Troy Dai
a7d717d19c
Update CoreCLR versions
2015-08-05 09:35:37 -07:00
Victor Hurdugaci
84192cb1a9
Fix the casing of a pacakge reference. It is causing cross plat issues
2015-07-30 11:39:28 -07:00
Victor Hurdugaci
e96b4d7b94
React to DNX renames
2015-07-29 04:49:49 -07:00
Tugberk Ugurlu
81f8b3edfb
removed packExclude from unnecessary places, replaced it with
...
publishExclude and removed kproj and xproj excludes
2015-07-20 16:49:59 -07:00
Ryan Nowak
e985fa5d42
Split up MVC.Extensions into smaller packages
...
Startup.cs API experience to follow in a separate change. This change just
gets the bulk of the code churn out of the way.
2015-07-06 23:41:22 -07:00
Victor Hurdugaci
c2952f26fa
Add repository information to project files
2015-07-01 20:18:53 -07:00
Ajay Bhargav Baaskaran
a3cbb1f378
[ Fixes #2684 ] Removed Mvc.Common
...
- Removed TaskHelper and refactored with ClosedGenericMatcher
- Removed TypeHelper
- Moved custom encodings to InputFormatter
- Moved ObjectToDictionary to PropertyHelper
- Removed respective tests and test projects
2015-06-25 16:02:07 -07:00
Ajay Bhargav Baaskaran
fcdbd17e58
Removed Diagnostics.Abstractions dependency from Mvc.Razor
2015-06-16 10:25:26 -07:00
Ryan Nowak
a679e87a9b
Split Mvc.Core
...
This is the first step is some more refactorings to come in the future
with the goal of making MVC less monolythic. This makes the core of MVC
more reusable and more in line with the design of other vNext platform
components.
With this change, Mvc.Core contains just the minimal guts needed to build
a working app.
- Action Discovery
- Action Invoker
- Filters
- ObjectResult
- Model Metadata
- Model Binding
- Formatters
- Validation System
And yes, we are aware of the irony of 'minimal MVC' not including the view
system. The idea is that this is the kernel of an MVC app, and anything
real is layered on top.
The most noticable impact of this change is that MvcOptions has been blown
apart into more managable chunks. See the various ConfigureMvc*** methods.
The new Mvc.Extensions package is a placeholder while we evaluate and tune
the new definitions. Expect more changes as features are move to their own
packages, and in some case their own repositories.
For now there is no experience to bootstrap an Mvc.Core app. That's coming
next.
2015-06-09 02:12:13 -07:00
Kirthi Krishnamraju
78033fda1f
fix build break
2015-05-21 11:25:03 -07:00
Troy Dai
ea717729c1
React to common package name change
2015-05-07 09:39:08 -07:00
BrennanConroy
e79cd72f3e
Update project.json
2015-05-01 15:59:04 -07:00
Troy Dai
66921670bf
React to DNX package names change
2015-05-01 11:11:13 -07:00
Brennan
d304a9bf5c
Diagnostics Package Rename Reaction
2015-04-29 16:42:26 -07:00
N. Taylor Mullen
1d578ca2fd
Remove BOM from project.json, *.cmd, *.sh and *.shade files.
2015-03-09 12:56:42 -07:00
N. Taylor Mullen
e829ba7646
Update aspnet50/aspnetcore50 => dnx451/dnxcore50.
2015-03-08 12:52:24 -07:00
N. Taylor Mullen
df4b92b1c1
Update MVC projects to utilize Common repo classes.
...
- Had to add extra dependencies to work around aspnet/XRE#1237 .
- Updated src and test projects.
2015-02-22 18:23:28 -08:00
Yishai Galatzer
bb31e2aec5
Rename Microsoft.AspNet.PageExecutionInstrumentation to Microsoft.AspNet.PageExecutionInstrumentation.Interfaces
2015-02-19 12:02:29 -08:00
Pranav K
3d6a018793
Upgrading Roslyn version to 1.0.0-rc2
2015-02-17 11:13:02 -08:00
Brice Lambson
057959a786
Remove assembly-neutral interfaces
2015-02-12 13:35:27 -08:00
Pranav K
5ed0638402
Move PageExecutionListener interfaces to a separate assembly.
2015-02-11 18:06:20 -08:00
Pranav K
70ce04ff21
Results of parsing _ViewStart files should be cached
...
Fixes #1016
2015-02-10 13:48:33 -08:00
Pranav K
12243e7d97
* Modifying RazorPrecompiler to use IMemoryCache to cache results when
...
precompilation is invoked via Design Time Host.
* Change compilation to occur in parallel
2015-01-20 10:34:25 -08:00
Pranav K
cbea96cf37
Reacting to Roslyn version change
2015-01-13 08:19:49 -08:00
Pranav K
487c5464c0
Adding reference to Roslyn to unbreak build
2015-01-03 07:31:27 -08:00
Pranav K
110ee28e3e
Adding support for flowing compilation settings to views
...
Fixes #871
2015-01-02 15:34:52 -08:00
Pranav K
2a57f93117
Updating Razor to not use K.Roslyn
2014-12-17 14:48:57 -08:00
Kirthi Krishnamraju
dc1aaf0664
Merge branch 'release' into dev
2014-10-29 13:42:56 -07:00
Kirthi Krishnamraju
028a2359a4
Added description in project.json for all projects
2014-10-29 13:40:31 -07:00
Pranav K
d35057deea
Reacting to Roslyn version changes
2014-10-28 06:34:06 -07:00
Pranav K
9e3a92e569
Revert "Mvc should not pull in the K.Roslyn package"
...
This reverts commit 6050d73554 .
2014-10-22 15:27:16 -07:00
Pranav K
6050d73554
Mvc should not pull in the K.Roslyn package
...
Fixes #1427
2014-10-22 11:15:57 -07:00
Pranav K
66f626b828
Remove unnecessary references from project.json
2014-10-17 14:26:58 -07:00
Pranav K
b19764d922
Reacting to CLR package versioning changes
2014-10-10 10:34:01 -07:00
Doug Bunting
9899cb336a
Cleanup tabs in project.json files
2014-10-09 12:38:52 -07:00
N. Taylor Mullen
757441777e
Use Microsoft.AspNet.Razor.Runtime project.
2014-10-09 12:37:54 -07:00
N. Taylor Mullen
2670b19f5c
Remove framework assembly versions.
2014-10-06 14:57:43 -07:00
David Fowler
5890b5b254
Fixed up references
2014-10-05 13:24:00 -07:00