albacore 2.0.0.rc.18 → 2.0.0.rc.19

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +68 -8
  3. data/albacore.gemspec +1 -1
  4. data/lib/albacore/app_spec.rb +38 -6
  5. data/lib/albacore/app_spec/README.md +4 -0
  6. data/lib/albacore/app_spec/defaults.rb +61 -0
  7. data/lib/albacore/app_spec/iis_site.rb +42 -0
  8. data/lib/albacore/cpack_app_spec.rb +30 -39
  9. data/lib/albacore/version.rb +1 -1
  10. data/resources/installSite.ps1 +50 -0
  11. data/spec/test_appspecs/corp.service/.gitignore +3 -0
  12. data/spec/test_appspecs/corp.service/.nuget/packages.config +4 -0
  13. data/spec/test_appspecs/corp.service/CSharpWeb/.appspec +5 -0
  14. data/spec/test_appspecs/corp.service/CSharpWeb/App_Start/BundleConfig.cs +43 -0
  15. data/spec/test_appspecs/corp.service/CSharpWeb/App_Start/FilterConfig.cs +13 -0
  16. data/spec/test_appspecs/corp.service/CSharpWeb/App_Start/RouteConfig.cs +23 -0
  17. data/spec/test_appspecs/corp.service/CSharpWeb/App_Start/WebApiConfig.cs +19 -0
  18. data/spec/test_appspecs/corp.service/CSharpWeb/CSharpWeb.csproj +264 -0
  19. data/spec/test_appspecs/corp.service/CSharpWeb/Content/Site.css +61 -0
  20. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  21. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  22. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  23. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  24. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  25. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  26. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  27. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  28. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/images/ui-icons_222222_256x240.png +0 -0
  29. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
  30. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/images/ui-icons_454545_256x240.png +0 -0
  31. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/images/ui-icons_888888_256x240.png +0 -0
  32. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
  33. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery-ui.css +464 -0
  34. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery.ui.accordion.css +19 -0
  35. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery.ui.all.css +11 -0
  36. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery.ui.autocomplete.css +53 -0
  37. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery.ui.base.css +21 -0
  38. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery.ui.button.css +38 -0
  39. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery.ui.core.css +38 -0
  40. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery.ui.datepicker.css +66 -0
  41. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery.ui.dialog.css +21 -0
  42. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery.ui.progressbar.css +11 -0
  43. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery.ui.resizable.css +20 -0
  44. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery.ui.selectable.css +10 -0
  45. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery.ui.slider.css +24 -0
  46. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery.ui.tabs.css +18 -0
  47. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/jquery.ui.theme.css +247 -0
  48. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  49. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  50. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  51. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  52. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  53. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  54. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  55. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  56. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/images/ui-icons_222222_256x240.png +0 -0
  57. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png +0 -0
  58. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/images/ui-icons_454545_256x240.png +0 -0
  59. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/images/ui-icons_888888_256x240.png +0 -0
  60. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png +0 -0
  61. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/jquery-ui.min.css +5 -0
  62. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/jquery.ui.accordion.min.css +5 -0
  63. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/jquery.ui.autocomplete.min.css +5 -0
  64. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/jquery.ui.button.min.css +5 -0
  65. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/jquery.ui.core.min.css +5 -0
  66. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/jquery.ui.datepicker.min.css +5 -0
  67. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/jquery.ui.dialog.min.css +5 -0
  68. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/jquery.ui.progressbar.min.css +5 -0
  69. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/jquery.ui.resizable.min.css +5 -0
  70. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/jquery.ui.selectable.min.css +5 -0
  71. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/jquery.ui.slider.min.css +5 -0
  72. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/jquery.ui.tabs.min.css +5 -0
  73. data/spec/test_appspecs/corp.service/CSharpWeb/Content/themes/base/minified/jquery.ui.theme.min.css +5 -0
  74. data/spec/test_appspecs/corp.service/CSharpWeb/Controllers/HomeController.cs +17 -0
  75. data/spec/test_appspecs/corp.service/CSharpWeb/Global.asax +1 -0
  76. data/spec/test_appspecs/corp.service/CSharpWeb/Global.asax.cs +24 -0
  77. data/spec/test_appspecs/corp.service/CSharpWeb/Properties/AssemblyInfo.cs +35 -0
  78. data/spec/test_appspecs/corp.service/CSharpWeb/Properties/PublishProfiles/local.pubxml +17 -0
  79. data/spec/test_appspecs/corp.service/CSharpWeb/Views/Home/Index.cshtml +8 -0
  80. data/spec/test_appspecs/corp.service/CSharpWeb/Views/Shared/Error.cshtml +17 -0
  81. data/spec/test_appspecs/corp.service/CSharpWeb/Views/Shared/_Layout.cshtml +16 -0
  82. data/spec/test_appspecs/corp.service/CSharpWeb/Views/Web.config +59 -0
  83. data/spec/test_appspecs/corp.service/CSharpWeb/Views/_ViewStart.cshtml +3 -0
  84. data/spec/test_appspecs/corp.service/CSharpWeb/Web.Debug.config +30 -0
  85. data/spec/test_appspecs/corp.service/CSharpWeb/Web.Release.config +31 -0
  86. data/spec/test_appspecs/corp.service/CSharpWeb/Web.config +107 -0
  87. data/spec/test_appspecs/corp.service/CSharpWeb/packages.config +26 -0
  88. data/spec/test_appspecs/corp.service/FSharpWeb/AssemblyInfo.fs +22 -0
  89. data/spec/test_appspecs/corp.service/FSharpWeb/Content/Site.css +42 -0
  90. data/spec/test_appspecs/corp.service/FSharpWeb/Controllers/HomeController.fs +13 -0
  91. data/spec/test_appspecs/corp.service/FSharpWeb/Controllers/ValuesController.fs +23 -0
  92. data/spec/test_appspecs/corp.service/FSharpWeb/FSharpWeb.fsproj +217 -0
  93. data/spec/test_appspecs/corp.service/FSharpWeb/Global.asax +1 -0
  94. data/spec/test_appspecs/corp.service/FSharpWeb/Global.asax.fs +71 -0
  95. data/spec/test_appspecs/corp.service/FSharpWeb/Views/Home/Index.cshtml +10 -0
  96. data/spec/test_appspecs/corp.service/FSharpWeb/Views/Shared/Error.cshtml +5 -0
  97. data/spec/test_appspecs/corp.service/FSharpWeb/Views/Shared/_Layout.cshtml +40 -0
  98. data/spec/test_appspecs/corp.service/FSharpWeb/Views/Web.config +34 -0
  99. data/spec/test_appspecs/corp.service/FSharpWeb/Views/_ViewStart.cshtml +3 -0
  100. data/spec/test_appspecs/corp.service/FSharpWeb/fonts/glyphicons-halflings-regular.eot +0 -0
  101. data/spec/test_appspecs/corp.service/FSharpWeb/fonts/glyphicons-halflings-regular.svg +229 -0
  102. data/spec/test_appspecs/corp.service/FSharpWeb/fonts/glyphicons-halflings-regular.ttf +0 -0
  103. data/spec/test_appspecs/corp.service/FSharpWeb/fonts/glyphicons-halflings-regular.woff +0 -0
  104. data/spec/test_appspecs/corp.service/FSharpWeb/local.pubxml +17 -0
  105. data/spec/test_appspecs/corp.service/FSharpWeb/packages.config +21 -0
  106. data/spec/test_appspecs/corp.service/FSharpWeb/readme.txt +1 -0
  107. data/spec/test_appspecs/corp.service/FSharpWeb/web.config +55 -0
  108. data/spec/test_appspecs/corp.service/Rakefile +13 -2
  109. data/spec/test_appspecs/corp.service/corp.service.svc.sln +18 -1
  110. data/spec/test_appspecs/corp.service/corp.service.svc/.appspec +2 -0
  111. metadata +201 -6
  112. data/spec/test_appspecs/corp.service/corp.service.svc/corp.service.svc.sln +0 -20
@@ -1 +1,4 @@
1
1
  build/
2
+ packages/
3
+ Scripts/
4
+ bootstrap*.css
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <packages>
3
+ <package id="MSBuild.Extension.Pack" version="1.3.0" />
4
+ </packages>
@@ -0,0 +1,5 @@
1
+ ---
2
+ version: 0.0.1
3
+ authors: Henrik Feldt
4
+ provider: iis_site
5
+ project_path: ../CSharpWeb.csproj
@@ -0,0 +1,43 @@
1
+ using System.Web;
2
+ using System.Web.Optimization;
3
+
4
+ namespace CSharpWeb
5
+ {
6
+ public class BundleConfig
7
+ {
8
+ // For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725
9
+ public static void RegisterBundles(BundleCollection bundles)
10
+ {
11
+ bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
12
+ "~/Scripts/jquery-{version}.js"));
13
+
14
+ bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
15
+ "~/Scripts/jquery-ui-{version}.js"));
16
+
17
+ bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
18
+ "~/Scripts/jquery.unobtrusive*",
19
+ "~/Scripts/jquery.validate*"));
20
+
21
+ // Use the development version of Modernizr to develop with and learn from. Then, when you're
22
+ // ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
23
+ bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
24
+ "~/Scripts/modernizr-*"));
25
+
26
+ bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css"));
27
+
28
+ bundles.Add(new StyleBundle("~/Content/themes/base/css").Include(
29
+ "~/Content/themes/base/jquery.ui.core.css",
30
+ "~/Content/themes/base/jquery.ui.resizable.css",
31
+ "~/Content/themes/base/jquery.ui.selectable.css",
32
+ "~/Content/themes/base/jquery.ui.accordion.css",
33
+ "~/Content/themes/base/jquery.ui.autocomplete.css",
34
+ "~/Content/themes/base/jquery.ui.button.css",
35
+ "~/Content/themes/base/jquery.ui.dialog.css",
36
+ "~/Content/themes/base/jquery.ui.slider.css",
37
+ "~/Content/themes/base/jquery.ui.tabs.css",
38
+ "~/Content/themes/base/jquery.ui.datepicker.css",
39
+ "~/Content/themes/base/jquery.ui.progressbar.css",
40
+ "~/Content/themes/base/jquery.ui.theme.css"));
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,13 @@
1
+ using System.Web;
2
+ using System.Web.Mvc;
3
+
4
+ namespace CSharpWeb
5
+ {
6
+ public class FilterConfig
7
+ {
8
+ public static void RegisterGlobalFilters(GlobalFilterCollection filters)
9
+ {
10
+ filters.Add(new HandleErrorAttribute());
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,23 @@
1
+ using System;
2
+ using System.Collections.Generic;
3
+ using System.Linq;
4
+ using System.Web;
5
+ using System.Web.Mvc;
6
+ using System.Web.Routing;
7
+
8
+ namespace CSharpWeb
9
+ {
10
+ public class RouteConfig
11
+ {
12
+ public static void RegisterRoutes(RouteCollection routes)
13
+ {
14
+ routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
15
+
16
+ routes.MapRoute(
17
+ name: "Default",
18
+ url: "{controller}/{action}/{id}",
19
+ defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
20
+ );
21
+ }
22
+ }
23
+ }
@@ -0,0 +1,19 @@
1
+ using System;
2
+ using System.Collections.Generic;
3
+ using System.Linq;
4
+ using System.Web.Http;
5
+
6
+ namespace CSharpWeb
7
+ {
8
+ public static class WebApiConfig
9
+ {
10
+ public static void Register(HttpConfiguration config)
11
+ {
12
+ config.Routes.MapHttpRoute(
13
+ name: "DefaultApi",
14
+ routeTemplate: "api/{controller}/{id}",
15
+ defaults: new { id = RouteParameter.Optional }
16
+ );
17
+ }
18
+ }
19
+ }
@@ -0,0 +1,264 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
+ <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4
+ <PropertyGroup>
5
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7
+ <ProductVersion>
8
+ </ProductVersion>
9
+ <SchemaVersion>2.0</SchemaVersion>
10
+ <ProjectGuid>{FAD4BA4B-943E-4CA0-AB02-0F0FFC689110}</ProjectGuid>
11
+ <ProjectTypeGuids>{E3E379DF-F4C6-4180-9B81-6769533ABE47};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
12
+ <OutputType>Library</OutputType>
13
+ <AppDesignerFolder>Properties</AppDesignerFolder>
14
+ <RootNamespace>CSharpWeb</RootNamespace>
15
+ <AssemblyName>CSharpWeb</AssemblyName>
16
+ <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
17
+ <MvcBuildViews>false</MvcBuildViews>
18
+ <UseIISExpress>true</UseIISExpress>
19
+ <IISExpressSSLPort />
20
+ <IISExpressAnonymousAuthentication />
21
+ <IISExpressWindowsAuthentication />
22
+ <IISExpressUseClassicPipelineMode />
23
+ </PropertyGroup>
24
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
25
+ <DebugSymbols>true</DebugSymbols>
26
+ <DebugType>full</DebugType>
27
+ <Optimize>false</Optimize>
28
+ <OutputPath>bin\</OutputPath>
29
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
30
+ <ErrorReport>prompt</ErrorReport>
31
+ <WarningLevel>4</WarningLevel>
32
+ </PropertyGroup>
33
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
34
+ <DebugType>pdbonly</DebugType>
35
+ <Optimize>true</Optimize>
36
+ <OutputPath>bin\</OutputPath>
37
+ <DefineConstants>TRACE</DefineConstants>
38
+ <ErrorReport>prompt</ErrorReport>
39
+ <WarningLevel>4</WarningLevel>
40
+ </PropertyGroup>
41
+ <ItemGroup>
42
+ <Reference Include="Microsoft.CSharp" />
43
+ <Reference Include="System" />
44
+ <Reference Include="System.Data" />
45
+ <Reference Include="System.Data.Entity" />
46
+ <Reference Include="System.Drawing" />
47
+ <Reference Include="System.Web.DynamicData" />
48
+ <Reference Include="System.Web.Entity" />
49
+ <Reference Include="System.Web.ApplicationServices" />
50
+ <Reference Include="System.ComponentModel.DataAnnotations" />
51
+ <Reference Include="System.Core" />
52
+ <Reference Include="System.Data.DataSetExtensions" />
53
+ <Reference Include="System.Xml.Linq" />
54
+ <Reference Include="System.Web" />
55
+ <Reference Include="System.Web.Extensions" />
56
+ <Reference Include="System.Web.Abstractions" />
57
+ <Reference Include="System.Web.Routing" />
58
+ <Reference Include="System.Xml" />
59
+ <Reference Include="System.Configuration" />
60
+ <Reference Include="System.Web.Services" />
61
+ <Reference Include="System.EnterpriseServices" />
62
+ <Reference Include="EntityFramework">
63
+ <HintPath>..\packages\EntityFramework.5.0.0\lib\net45\EntityFramework.dll</HintPath>
64
+ </Reference>
65
+ <Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
66
+ <Private>True</Private>
67
+ <HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
68
+ </Reference>
69
+ <Reference Include="Microsoft.Web.Mvc.FixedDisplayModes, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
70
+ <Private>True</Private>
71
+ <HintPath>..\packages\Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0\lib\net40\Microsoft.Web.Mvc.FixedDisplayModes.dll</HintPath>
72
+ </Reference>
73
+ <Reference Include="Newtonsoft.Json">
74
+ <HintPath>..\packages\Newtonsoft.Json.4.5.11\lib\net40\Newtonsoft.Json.dll</HintPath>
75
+ </Reference>
76
+ <Reference Include="System.Net.Http">
77
+ </Reference>
78
+ <Reference Include="System.Net.Http.Formatting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
79
+ <HintPath>..\packages\Microsoft.AspNet.WebApi.Client.4.0.20710.0\lib\net40\System.Net.Http.Formatting.dll</HintPath>
80
+ </Reference>
81
+ <Reference Include="System.Net.Http.WebRequest">
82
+ </Reference>
83
+ <Reference Include="System.Web.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
84
+ <HintPath>..\packages\Microsoft.AspNet.WebApi.Core.4.0.20710.0\lib\net40\System.Web.Http.dll</HintPath>
85
+ </Reference>
86
+ <Reference Include="System.Web.Http.WebHost, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
87
+ <HintPath>..\packages\Microsoft.AspNet.WebApi.WebHost.4.0.20710.0\lib\net40\System.Web.Http.WebHost.dll</HintPath>
88
+ </Reference>
89
+ <Reference Include="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
90
+ <Private>True</Private>
91
+ <HintPath>..\packages\Microsoft.AspNet.Mvc.4.0.20710.0\lib\net40\System.Web.Mvc.dll</HintPath>
92
+ </Reference>
93
+ <Reference Include="System.Web.Optimization">
94
+ <HintPath>..\packages\Microsoft.AspNet.Web.Optimization.1.0.0\lib\net40\System.Web.Optimization.dll</HintPath>
95
+ </Reference>
96
+ <Reference Include="System.Web.Providers">
97
+ <HintPath>..\packages\Microsoft.AspNet.Providers.Core.1.2\lib\net40\System.Web.Providers.dll</HintPath>
98
+ </Reference>
99
+ <Reference Include="System.Web.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
100
+ <Private>True</Private>
101
+ <HintPath>..\packages\Microsoft.AspNet.Razor.2.0.20715.0\lib\net40\System.Web.Razor.dll</HintPath>
102
+ </Reference>
103
+ <Reference Include="System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
104
+ <Private>True</Private>
105
+ <HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.dll</HintPath>
106
+ </Reference>
107
+ <Reference Include="System.Web.WebPages.Deployment, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
108
+ <Private>True</Private>
109
+ <HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.Deployment.dll</HintPath>
110
+ </Reference>
111
+ <Reference Include="System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
112
+ <Private>True</Private>
113
+ <HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.Razor.dll</HintPath>
114
+ </Reference>
115
+ <Reference Include="WebGrease">
116
+ <Private>True</Private>
117
+ <HintPath>..\packages\WebGrease.1.3.0\lib\WebGrease.dll</HintPath>
118
+ </Reference>
119
+ <Reference Include="Antlr3.Runtime">
120
+ <Private>True</Private>
121
+ <HintPath>..\packages\WebGrease.1.3.0\lib\Antlr3.Runtime.dll</HintPath>
122
+ </Reference>
123
+ </ItemGroup>
124
+ <ItemGroup>
125
+ <Compile Include="App_Start\BundleConfig.cs" />
126
+ <Compile Include="App_Start\FilterConfig.cs" />
127
+ <Compile Include="App_Start\RouteConfig.cs" />
128
+ <Compile Include="App_Start\WebApiConfig.cs" />
129
+ <Compile Include="Controllers\HomeController.cs" />
130
+ <Compile Include="Global.asax.cs">
131
+ <DependentUpon>Global.asax</DependentUpon>
132
+ </Compile>
133
+ <Compile Include="Properties\AssemblyInfo.cs" />
134
+ </ItemGroup>
135
+ <ItemGroup>
136
+ <Content Include="Content\themes\base\images\ui-bg_flat_0_aaaaaa_40x100.png" />
137
+ <Content Include="Content\themes\base\images\ui-bg_flat_75_ffffff_40x100.png" />
138
+ <Content Include="Content\themes\base\images\ui-bg_glass_55_fbf9ee_1x400.png" />
139
+ <Content Include="Content\themes\base\images\ui-bg_glass_65_ffffff_1x400.png" />
140
+ <Content Include="Content\themes\base\images\ui-bg_glass_75_dadada_1x400.png" />
141
+ <Content Include="Content\themes\base\images\ui-bg_glass_75_e6e6e6_1x400.png" />
142
+ <Content Include="Content\themes\base\images\ui-bg_glass_95_fef1ec_1x400.png" />
143
+ <Content Include="Content\themes\base\images\ui-bg_highlight-soft_75_cccccc_1x100.png" />
144
+ <Content Include="Content\themes\base\images\ui-icons_222222_256x240.png" />
145
+ <Content Include="Content\themes\base\images\ui-icons_2e83ff_256x240.png" />
146
+ <Content Include="Content\themes\base\images\ui-icons_454545_256x240.png" />
147
+ <Content Include="Content\themes\base\images\ui-icons_888888_256x240.png" />
148
+ <Content Include="Content\themes\base\images\ui-icons_cd0a0a_256x240.png" />
149
+ <Content Include="Content\themes\base\jquery-ui.css" />
150
+ <Content Include="Content\themes\base\jquery.ui.accordion.css" />
151
+ <Content Include="Content\themes\base\jquery.ui.all.css" />
152
+ <Content Include="Content\themes\base\jquery.ui.autocomplete.css" />
153
+ <Content Include="Content\themes\base\jquery.ui.base.css" />
154
+ <Content Include="Content\themes\base\jquery.ui.button.css" />
155
+ <Content Include="Content\themes\base\jquery.ui.core.css" />
156
+ <Content Include="Content\themes\base\jquery.ui.datepicker.css" />
157
+ <Content Include="Content\themes\base\jquery.ui.dialog.css" />
158
+ <Content Include="Content\themes\base\jquery.ui.progressbar.css" />
159
+ <Content Include="Content\themes\base\jquery.ui.resizable.css" />
160
+ <Content Include="Content\themes\base\jquery.ui.selectable.css" />
161
+ <Content Include="Content\themes\base\jquery.ui.slider.css" />
162
+ <Content Include="Content\themes\base\jquery.ui.tabs.css" />
163
+ <Content Include="Content\themes\base\jquery.ui.theme.css" />
164
+ <Content Include="Content\themes\base\minified\images\ui-bg_flat_0_aaaaaa_40x100.png" />
165
+ <Content Include="Content\themes\base\minified\images\ui-bg_flat_75_ffffff_40x100.png" />
166
+ <Content Include="Content\themes\base\minified\images\ui-bg_glass_55_fbf9ee_1x400.png" />
167
+ <Content Include="Content\themes\base\minified\images\ui-bg_glass_65_ffffff_1x400.png" />
168
+ <Content Include="Content\themes\base\minified\images\ui-bg_glass_75_dadada_1x400.png" />
169
+ <Content Include="Content\themes\base\minified\images\ui-bg_glass_75_e6e6e6_1x400.png" />
170
+ <Content Include="Content\themes\base\minified\images\ui-bg_glass_95_fef1ec_1x400.png" />
171
+ <Content Include="Content\themes\base\minified\images\ui-bg_highlight-soft_75_cccccc_1x100.png" />
172
+ <Content Include="Content\themes\base\minified\images\ui-icons_222222_256x240.png" />
173
+ <Content Include="Content\themes\base\minified\images\ui-icons_2e83ff_256x240.png" />
174
+ <Content Include="Content\themes\base\minified\images\ui-icons_454545_256x240.png" />
175
+ <Content Include="Content\themes\base\minified\images\ui-icons_888888_256x240.png" />
176
+ <Content Include="Content\themes\base\minified\images\ui-icons_cd0a0a_256x240.png" />
177
+ <Content Include="Content\themes\base\minified\jquery-ui.min.css" />
178
+ <Content Include="Content\themes\base\minified\jquery.ui.accordion.min.css" />
179
+ <Content Include="Content\themes\base\minified\jquery.ui.autocomplete.min.css" />
180
+ <Content Include="Content\themes\base\minified\jquery.ui.button.min.css" />
181
+ <Content Include="Content\themes\base\minified\jquery.ui.core.min.css" />
182
+ <Content Include="Content\themes\base\minified\jquery.ui.datepicker.min.css" />
183
+ <Content Include="Content\themes\base\minified\jquery.ui.dialog.min.css" />
184
+ <Content Include="Content\themes\base\minified\jquery.ui.progressbar.min.css" />
185
+ <Content Include="Content\themes\base\minified\jquery.ui.resizable.min.css" />
186
+ <Content Include="Content\themes\base\minified\jquery.ui.selectable.min.css" />
187
+ <Content Include="Content\themes\base\minified\jquery.ui.slider.min.css" />
188
+ <Content Include="Content\themes\base\minified\jquery.ui.tabs.min.css" />
189
+ <Content Include="Content\themes\base\minified\jquery.ui.theme.min.css" />
190
+ <Content Include="Global.asax" />
191
+ <Content Include="Content\Site.css" />
192
+ <Content Include=".appspec" />
193
+ <None Include="Properties\PublishProfiles\local.pubxml" />
194
+ <None Include="Scripts\jquery-1.8.2.intellisense.js" />
195
+ <Content Include="Scripts\jquery-1.8.2.js" />
196
+ <Content Include="Scripts\jquery-1.8.2.min.js" />
197
+ <None Include="Scripts\jquery.validate-vsdoc.js" />
198
+ <Content Include="Scripts\jquery-ui-1.8.24.js" />
199
+ <Content Include="Scripts\jquery-ui-1.8.24.min.js" />
200
+ <Content Include="Scripts\jquery.unobtrusive-ajax.js" />
201
+ <Content Include="Scripts\jquery.unobtrusive-ajax.min.js" />
202
+ <Content Include="Scripts\jquery.validate.js" />
203
+ <Content Include="Scripts\jquery.validate.min.js" />
204
+ <Content Include="Scripts\jquery.validate.unobtrusive.js" />
205
+ <Content Include="Scripts\jquery.validate.unobtrusive.min.js" />
206
+ <Content Include="Scripts\knockout-2.2.0.debug.js" />
207
+ <Content Include="Scripts\knockout-2.2.0.js" />
208
+ <Content Include="Scripts\modernizr-2.6.2.js" />
209
+ <Content Include="Scripts\_references.js" />
210
+ <Content Include="Web.config" />
211
+ <Content Include="Web.Debug.config">
212
+ <DependentUpon>Web.config</DependentUpon>
213
+ </Content>
214
+ <Content Include="Web.Release.config">
215
+ <DependentUpon>Web.config</DependentUpon>
216
+ </Content>
217
+ <Content Include="Views\Web.config" />
218
+ <Content Include="Views\_ViewStart.cshtml" />
219
+ <Content Include="Views\Shared\Error.cshtml" />
220
+ <Content Include="Views\Shared\_Layout.cshtml" />
221
+ <Content Include="Views\Home\Index.cshtml" />
222
+ </ItemGroup>
223
+ <ItemGroup>
224
+ <Folder Include="App_Data\" />
225
+ <Folder Include="Models\" />
226
+ </ItemGroup>
227
+ <ItemGroup>
228
+ <Content Include="packages.config" />
229
+ </ItemGroup>
230
+ <PropertyGroup>
231
+ <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
232
+ <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
233
+ </PropertyGroup>
234
+ <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
235
+ <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
236
+ <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
237
+ <Target Name="MvcBuildViews" AfterTargets="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
238
+ <AspNetCompiler VirtualPath="temp" PhysicalPath="$(WebProjectOutputDir)" />
239
+ </Target>
240
+ <ProjectExtensions>
241
+ <VisualStudio>
242
+ <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
243
+ <WebProjectProperties>
244
+ <UseIIS>True</UseIIS>
245
+ <AutoAssignPort>True</AutoAssignPort>
246
+ <DevelopmentServerPort>0</DevelopmentServerPort>
247
+ <DevelopmentServerVPath>/</DevelopmentServerVPath>
248
+ <IISUrl>http://localhost:46426/</IISUrl>
249
+ <NTLMAuthentication>False</NTLMAuthentication>
250
+ <UseCustomServer>False</UseCustomServer>
251
+ <CustomServerUrl>
252
+ </CustomServerUrl>
253
+ <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
254
+ </WebProjectProperties>
255
+ </FlavorProperties>
256
+ </VisualStudio>
257
+ </ProjectExtensions>
258
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
259
+ Other similar extension points exist, see Microsoft.Common.targets.
260
+ <Target Name="BeforeBuild">
261
+ </Target>
262
+ <Target Name="AfterBuild">
263
+ </Target> -->
264
+ </Project>
@@ -0,0 +1,61 @@
1
+ body {
2
+ font-size: .85em;
3
+ font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
4
+ color: #232323;
5
+ background-color: #fff;
6
+ }
7
+
8
+ header, footer, nav, section {
9
+ display: block;
10
+ }
11
+
12
+
13
+ /* Styles for basic forms
14
+ -----------------------------------------------------------*/
15
+ fieldset {
16
+ border: 1px solid #ddd;
17
+ padding: 0 1.4em 1.4em 1.4em;
18
+ margin: 0 0 1.5em 0;
19
+ }
20
+
21
+ legend {
22
+ font-size: 1.2em;
23
+ font-weight: bold;
24
+ }
25
+
26
+ textarea {
27
+ min-height: 75px;
28
+ }
29
+
30
+ .editor-label {
31
+ margin: 1em 0 0 0;
32
+ }
33
+
34
+ .editor-field {
35
+ margin: 0.5em 0 0 0;
36
+ }
37
+
38
+
39
+ /* Styles for validation helpers
40
+ -----------------------------------------------------------*/
41
+ .field-validation-error {
42
+ color: #f00;
43
+ }
44
+
45
+ .field-validation-valid {
46
+ display: none;
47
+ }
48
+
49
+ .input-validation-error {
50
+ border: 1px solid #f00;
51
+ background-color: #fee;
52
+ }
53
+
54
+ .validation-summary-errors {
55
+ font-weight: bold;
56
+ color: #f00;
57
+ }
58
+
59
+ .validation-summary-valid {
60
+ display: none;
61
+ }