Commit Graph

27752 Commits

Author SHA1 Message Date
Pranav K 2562becc0b Adding status badges 2015-04-01 18:08:34 -07:00
Suhas Joshi 2ceb4b3a6c Add SQL Identity support 2015-04-01 17:24:44 -07:00
N. Taylor Mullen 5b4ddc9082 Turn off sudo for .travis.yml. 2015-04-01 17:09:59 -07:00
N. Taylor Mullen 706fc8ddbd Turn off sudo for .travis.yml. 2015-04-01 17:09:42 -07:00
N. Taylor Mullen 982336a4fe Turn off sudo for .travis.yml. 2015-04-01 17:09:22 -07:00
N. Taylor Mullen caf59f5f49 Turn off sudo for .travis.yml. 2015-04-01 17:08:52 -07:00
N. Taylor Mullen b5907076b7 Turn off sudo for .travis.yml. 2015-04-01 17:08:00 -07:00
N. Taylor Mullen e25ae018c3 Turn off sudo for .travis.yml. 2015-04-01 17:07:53 -07:00
N. Taylor Mullen 6929127bf6 Turn off sudo for .travis.yml. 2015-04-01 17:07:36 -07:00
N. Taylor Mullen aedefcd03d Turn off sudo for .travis.yml. 2015-04-01 17:07:16 -07:00
N. Taylor Mullen 7aa73bb294 Turn off sudo for .travis.yml. 2015-04-01 17:06:59 -07:00
N. Taylor Mullen e343cfd2e1 Turn off sudo for .travis.yml. 2015-04-01 17:06:50 -07:00
N. Taylor Mullen f91f3da29c Turn off sudo for .travis.yml. 2015-04-01 17:06:34 -07:00
N. Taylor Mullen 02c37c9338 Turn off sudo for .travis.yml. 2015-04-01 17:06:25 -07:00
N. Taylor Mullen adfad921c5 Turn off sudo for .travis.yml. 2015-04-01 17:05:57 -07:00
N. Taylor Mullen 67872e2312 Turn off sudo for .travis.yml. 2015-04-01 17:04:57 -07:00
N. Taylor Mullen df74818199 Turn off sudo for .travis.yml. 2015-04-01 17:04:41 -07:00
N. Taylor Mullen 3189b36877 Turn off sudo for .travis.yml. 2015-04-01 17:04:12 -07:00
N. Taylor Mullen 9fffd3ebeb Turn off sudo for .travis.yml. 2015-04-01 16:28:58 -07:00
Pranav K f6ad0a32f0 Tables aren't cool anymore 2015-04-01 16:18:33 -07:00
Pranav K 72f34c5a55 Adding AppVeyor and Travis build status to README 2015-04-01 16:10:46 -07:00
N. Taylor Mullen 831e788e7f Add appveyor CI support. 2015-04-01 16:01:20 -07:00
N. Taylor Mullen 13eae9bb47 Add travis and appveyor CI support. 2015-04-01 15:59:29 -07:00
N. Taylor Mullen d70636b511 Add travis and appveyor CI support. 2015-04-01 15:58:45 -07:00
N. Taylor Mullen 2ae44c7063 Add travis and appveyor CI support. 2015-04-01 15:57:51 -07:00
N. Taylor Mullen 02ec77b9d0 Add travis and appveyor CI support. 2015-04-01 15:56:56 -07:00
N. Taylor Mullen c0bacd63bd Add travis and appveyor CI support. 2015-04-01 15:55:35 -07:00
N. Taylor Mullen 5a6c90882a Add travis and appveyor CI support. 2015-04-01 15:55:21 -07:00
N. Taylor Mullen b00a6828b1 Add travis and appveyor CI support. 2015-04-01 15:54:21 -07:00
N. Taylor Mullen 2de7c173ab Add travis and appveyor CI support. 2015-04-01 15:53:39 -07:00
N. Taylor Mullen 5871ce8e72 Add travis and appveyor CI support. 2015-04-01 15:52:11 -07:00
N. Taylor Mullen 180aa13d30 Add travis and appveyor CI support. 2015-04-01 15:51:37 -07:00
N. Taylor Mullen 7d72f95e61 Add travis and appveyor CI support. 2015-04-01 15:51:23 -07:00
N. Taylor Mullen ac9db0ff35 Add travis and appveyor CI support. 2015-04-01 15:45:04 -07:00
N. Taylor Mullen 13d3d5042e Add travis and appveyor CI support. 2015-04-01 15:44:53 -07:00
N. Taylor Mullen cfb20ff33c Add travis and appveyor CI support. 2015-04-01 15:42:06 -07:00
N. Taylor Mullen 2cb0ddce82 Add travis and appveyor CI support. 2015-04-01 15:40:28 -07:00
N. Taylor Mullen c23dda2e29 Add travis and appveyor CI support. 2015-04-01 15:38:46 -07:00
Praburaj 5d37101760 Fixing namespaces.
My VS build succeeds even without this change. On CI it seems to fail.
2015-04-01 14:19:47 -07:00
Praburaj 3b8d53e010 Fixing namespaces.
My VS build succeeds even without this change. On CI it seems to fail.
2015-04-01 13:59:57 -07:00
Pranav K a4f3b86865 Prevent RazorErrorExtensions.ToDiagnostics from throwing when it
encounters SourceLocation.Undefined \ negative error lengths
2015-04-01 13:51:29 -07:00
Praburaj 9ccc667b54 Fixing the logging package names in the unit test projects. 2015-04-01 13:34:45 -07:00
Praburaj 09a7250ccd Fixing the logging package names in the unit test projects. 2015-04-01 13:25:13 -07:00
Victor Hurdugaci e89ae2f6c3 Merge branch 'release' into dev 2015-04-01 13:22:45 -07:00
Praburaj 56cfbdde82 Fixing dataprotection on IIS
Fixes: https://github.com/aspnet/DataProtection/issues/73

On IIS where there is no user profile, the code tries to always read the 32bit registry view irrespective of the bitness of the worker process. So in case of 64 bit app pools the registry key is null so it falls back to in memory ephemeral repository. On 32 bit app pool it can find an appropriate registry key, but the keyRepositoryDescriptor is not populated resulting in a null reference exception.

Current behavior:
X86 throws
X64 falls back to in memory ephemeral

With fix:
Both X86 and X64 will use DPAPI.
2015-04-01 13:02:09 -07:00
Ryan Nowak c6a1af97b0 Use Hosting.Interfaces 2015-04-01 12:16:09 -07:00
Praburaj 33fa06a25c Fixing dataprotection on IIS
Fixes: https://github.com/aspnet/DataProtection/issues/73

On IIS where there is no user profile, the code tries to always read the 32bit registry view irrespective of the bitness of the worker process. So in case of 64 bit app pools the registry key is null so it falls back to in memory ephemeral repository. On 32 bit app pool it can find an appropriate registry key, but the keyRepositoryDescriptor is not populated resulting in a null reference exception.

Current behavior:
X86 throws
X64 falls back to in memory ephemeral

With fix:
Both X86 and X64 will use DPAPI.
2015-04-01 11:54:24 -07:00
Ryan Nowak 6caa2871aa Use DataProtection.Interfaces 2015-04-01 11:47:24 -07:00
Ryan Nowak acb657d951 [Perf] Fully cache model metadata
This change caches the actual model metadata instances. Some profiling
showed we didn't go far enough, we were allocating a lot of ModelMetadata
+ ModelPropertyCollection instances.
2015-04-01 11:44:17 -07:00
Victor Hurdugaci 6b1cb5ca7a Skip projects that were not cloned 2015-04-01 09:40:50 -07:00