Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to MVC 5 and .NET 4.5 #16

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
149 changes: 138 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,140 @@
build/
*suo
#--------------------------------------------------
#------------------ .NET Related ------------------
#--------------------------------------------------

# Build Folders
[Bb]in/
[Oo]bj/

# mstest test results
TestResults

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates

# Build results
[Dd]ebug/
[Rr]elease/
x64/
*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.log
*.vspscc
*.vssscc
.builds

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf

# Visual Studio profiler
*.psess
*.vsp
*.vspx

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*
*.resharper*
bin
obj
Bin
*ncrunch*
*.DotSettings*
release/
UpgradeLog.xml

# NCrunch
*.ncrunch*
.*crunch*.local.xml

# Click-Once directory
publish

# Publish Web Output
*.Publish.xml

# NuGet Packages Directory
packages/
NuGet.exe

# Windows Azure Build Output
csx
*.build.csdef

# Windows Store app package directory
AppPackages/

# Others
sql
[Tt]est[Rr]esult*
*.Cache
ClientBin
[Ss]tyle[Cc]op.*
~$*
*.dbmdl
Generated_Code #added for RIA/Silverlight projects

# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Restfulie.Server/CommonAssemblyInfo.cs
Backup*/
UpgradeLog*.XML

#Local db
App_Data/

#Assets pipeline
Public/

#chutzpah files
_Chutzpah*

UpgradeLog*


**/CodeMetricsReport/


#--------------------------------------------------
#---------------- Windows Related -----------------
#--------------------------------------------------
Thumbs.db

#--------------------------------------------------
#------------------ OS X Related ------------------
#--------------------------------------------------
.DS_Store

#--------------------------------------------------
#------------------ Sass Related ------------------
#--------------------------------------------------

.sass-cache/

#--------------------------------------------------
#----------------- Node.js Related ----------------
#--------------------------------------------------
npm-debug.log
node_modules/
bower_components/

#--------------------------------------------------
#-------------- Sublime Text Related --------------
#--------------------------------------------------
*.sublime-workspace
11 changes: 11 additions & 0 deletions .nuget/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id = "coveralls.io" version="1.3.4" />
<package id = "NUnit.Runners" version="3.2.0" />
<package id = "OpenCover" version="4.6.519" />
<package id = "NUnit.ConsoleRunner" version="3.2.0"/>
<package id = "NUnit.Extension.NUnitProjectLoader" version="3.2.0"/>
<package id = "NUnit.Extension.VSProjectLoader" version="3.2.0"/>
<package id = "NUnit.Extension.NUnitV2ResultWriter" version="3.2.0"/>
<package id = "NUnit.Extension.NUnitV2Driver" version="3.2.0"/>
</packages>
Binary file removed Dependencies/Castle/Castle.Core.dll
Binary file not shown.
Loading