Skip to content

Commit d12c8ab

Browse files
committed
Initial commit
1 parent 80d9246 commit d12c8ab

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+29512
-0
lines changed

Diff for: .gitignore

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
[Oo]bj
2+
[Bb]in
3+
[Rr]ealse
4+
[Dd]ebug
5+
./Resharp*
6+
Thumbs.db
7+
cmd.exe
8+
Git Bash.lnk
9+
*.docstates.suo
10+
*.suo
11+
*.user
12+
[Tt]est[Rr]esults
13+
*.dep
14+
*.aps
15+
*.vbw
16+
*.obj
17+
*.ncb
18+
*.plg
19+
*.bsc
20+
*.ilk
21+
*.exp
22+
*.sbr
23+
*.opt
24+
*.pdb
25+
*.idb
26+
*.pch
27+
*.res
28+
*.*.sw*
29+
.DS_Store
30+
node_modules
31+
.idea
32+
*.iml
33+
npm-debug.log
34+
*.psess
35+
*.vsp
36+
*.ipr
37+
*.iws
38+
/.project

Diff for: .vs/config/applicationhost.config

+1,027
Large diffs are not rendered by default.

Diff for: BuildMonitor.png

85.8 KB
Loading

Diff for: BuildMonitor.sln

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.31101.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BuildMonitor", "BuildMonitor\BuildMonitor.csproj", "{BAD34A97-E9D9-4D04-ABBD-CA8AEAB1818C}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{BAD34A97-E9D9-4D04-ABBD-CA8AEAB1818C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{BAD34A97-E9D9-4D04-ABBD-CA8AEAB1818C}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{BAD34A97-E9D9-4D04-ABBD-CA8AEAB1818C}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{BAD34A97-E9D9-4D04-ABBD-CA8AEAB1818C}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal

Diff for: BuildMonitor/App_Data/Settings.xml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Settings>
3+
<Groups>
4+
<!-- Example xml structure for custom jobs, you can create as many groups with jobs as you want here -->
5+
<Group name="Backend">
6+
<Jobs>
7+
<Job id="TeamCity_Job_Id_1" />
8+
<Job id="TeamCity_Job_Id_2" />
9+
<Job id="TeamCity_Job_Id_3" />
10+
<Job id="TeamCity_Job_Id_4" />
11+
</Jobs>
12+
</Group>
13+
<Group name="Frontend">
14+
<Jobs>
15+
<Job id="TeamCity_Job_Id_5" />
16+
<Job id="TeamCity_Job_Id_6" />
17+
<Job id="TeamCity_Job_Id_7" />
18+
<Job id="TeamCity_Job_Id_8" />
19+
</Jobs>
20+
</Group>
21+
<Group name="Tests">
22+
<Jobs>
23+
<Job id="TeamCity_Job_Id_9" />
24+
<Job id="TeamCity_Job_Id_10" />
25+
</Jobs>
26+
</Group>
27+
</Groups>
28+
</Settings>

Diff for: BuildMonitor/App_Start/BundleConfig.cs

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System.Web.Optimization;
2+
3+
namespace BuildMonitor
4+
{
5+
public class BundleConfig
6+
{
7+
public static void RegisterBundles(BundleCollection bundles)
8+
{
9+
bundles.Add(new ScriptBundle("~/bundles/jquery").Include("~/Scripts/jquery-{version}.js"));
10+
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include("~/Scripts/jquery.validate*"));
11+
bundles.Add(new ScriptBundle("~/bundles/home").Include("~/Scripts/Project/home.js"));
12+
13+
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include("~/Scripts/modernizr-*"));
14+
bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include("~/Scripts/bootstrap.js", "~/Scripts/respond.js"));
15+
bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/bootstrap.css", "~/Content/site.css"));
16+
}
17+
}
18+
}

Diff for: BuildMonitor/App_Start/FilterConfig.cs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System.Web.Mvc;
2+
3+
namespace BuildMonitor
4+
{
5+
public class FilterConfig
6+
{
7+
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
8+
{
9+
filters.Add(new HandleErrorAttribute());
10+
}
11+
}
12+
}

Diff for: BuildMonitor/App_Start/RouteConfig.cs

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using System.Web.Mvc;
2+
using System.Web.Routing;
3+
4+
namespace BuildMonitor
5+
{
6+
public class RouteConfig
7+
{
8+
public static void RegisterRoutes(RouteCollection routes)
9+
{
10+
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
11+
12+
routes.MapRoute(
13+
name: "Default",
14+
url: "{controller}/{action}/{id}",
15+
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
16+
);
17+
}
18+
}
19+
}

Diff for: BuildMonitor/BuildMonitor.csproj

+236
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,236 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.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>{BAD34A97-E9D9-4D04-ABBD-CA8AEAB1818C}</ProjectGuid>
11+
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
12+
<OutputType>Library</OutputType>
13+
<AppDesignerFolder>Properties</AppDesignerFolder>
14+
<RootNamespace>BuildMonitor</RootNamespace>
15+
<AssemblyName>BuildMonitor</AssemblyName>
16+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
17+
<MvcBuildViews>false</MvcBuildViews>
18+
<UseIISExpress>true</UseIISExpress>
19+
<IISExpressSSLPort />
20+
<IISExpressAnonymousAuthentication />
21+
<IISExpressWindowsAuthentication />
22+
<IISExpressUseClassicPipelineMode />
23+
<NuGetPackageImportStamp>cd2d7c96</NuGetPackageImportStamp>
24+
</PropertyGroup>
25+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
26+
<DebugSymbols>true</DebugSymbols>
27+
<DebugType>full</DebugType>
28+
<Optimize>false</Optimize>
29+
<OutputPath>bin\</OutputPath>
30+
<DefineConstants>DEBUG;TRACE</DefineConstants>
31+
<ErrorReport>prompt</ErrorReport>
32+
<WarningLevel>4</WarningLevel>
33+
<PlatformTarget>AnyCPU</PlatformTarget>
34+
</PropertyGroup>
35+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
36+
<DebugType>pdbonly</DebugType>
37+
<Optimize>true</Optimize>
38+
<OutputPath>bin\</OutputPath>
39+
<DefineConstants>TRACE</DefineConstants>
40+
<ErrorReport>prompt</ErrorReport>
41+
<WarningLevel>4</WarningLevel>
42+
</PropertyGroup>
43+
<ItemGroup>
44+
<Reference Include="Microsoft.CSharp" />
45+
<Reference Include="System" />
46+
<Reference Include="System.Data" />
47+
<Reference Include="System.Drawing" />
48+
<Reference Include="System.Runtime.Caching" />
49+
<Reference Include="System.Web.DynamicData" />
50+
<Reference Include="System.Web.Entity" />
51+
<Reference Include="System.Web.ApplicationServices" />
52+
<Reference Include="System.ComponentModel.DataAnnotations" />
53+
<Reference Include="System.Core" />
54+
<Reference Include="System.Data.DataSetExtensions" />
55+
<Reference Include="System.Xml.Linq" />
56+
<Reference Include="System.Web" />
57+
<Reference Include="System.Web.Extensions" />
58+
<Reference Include="System.Web.Abstractions" />
59+
<Reference Include="System.Web.Routing" />
60+
<Reference Include="System.Xml" />
61+
<Reference Include="System.Configuration" />
62+
<Reference Include="System.Web.Services" />
63+
<Reference Include="System.EnterpriseServices" />
64+
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
65+
<Private>True</Private>
66+
<HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
67+
</Reference>
68+
<Reference Include="System.Net.Http">
69+
</Reference>
70+
<Reference Include="System.Net.Http.WebRequest">
71+
</Reference>
72+
<Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
73+
<Private>True</Private>
74+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.2\lib\net45\System.Web.Helpers.dll</HintPath>
75+
</Reference>
76+
<Reference Include="System.Web.Mvc, Version=__MvcPagesVersion__, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
77+
<Private>True</Private>
78+
<HintPath>..\packages\Microsoft.AspNet.Mvc.5.2.2\lib\net45\System.Web.Mvc.dll</HintPath>
79+
</Reference>
80+
<Reference Include="System.Web.Optimization">
81+
<HintPath>..\packages\Microsoft.AspNet.Web.Optimization.1.1.3\lib\net40\System.Web.Optimization.dll</HintPath>
82+
</Reference>
83+
<Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
84+
<Private>True</Private>
85+
<HintPath>..\packages\Microsoft.AspNet.Razor.3.2.2\lib\net45\System.Web.Razor.dll</HintPath>
86+
</Reference>
87+
<Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
88+
<Private>True</Private>
89+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.2\lib\net45\System.Web.WebPages.dll</HintPath>
90+
</Reference>
91+
<Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
92+
<Private>True</Private>
93+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.2\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
94+
</Reference>
95+
<Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
96+
<Private>True</Private>
97+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.2\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
98+
</Reference>
99+
<Reference Include="WebGrease">
100+
<Private>True</Private>
101+
<HintPath>..\packages\WebGrease.1.5.2\lib\WebGrease.dll</HintPath>
102+
</Reference>
103+
<Reference Include="Antlr3.Runtime">
104+
<Private>True</Private>
105+
<HintPath>..\packages\Antlr.3.4.1.9004\lib\Antlr3.Runtime.dll</HintPath>
106+
</Reference>
107+
</ItemGroup>
108+
<ItemGroup>
109+
<Reference Include="Newtonsoft.Json">
110+
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
111+
</Reference>
112+
<Reference Include="EntityFramework">
113+
<HintPath>..\packages\EntityFramework.6.1.1\lib\net45\EntityFramework.dll</HintPath>
114+
</Reference>
115+
<Reference Include="EntityFramework.SqlServer">
116+
<HintPath>..\packages\EntityFramework.6.1.1\lib\net45\EntityFramework.SqlServer.dll</HintPath>
117+
</Reference>
118+
<Reference Include="Microsoft.AspNet.Identity.Core">
119+
<HintPath>..\packages\Microsoft.AspNet.Identity.Core.2.1.0\lib\net45\Microsoft.AspNet.Identity.Core.dll</HintPath>
120+
</Reference>
121+
<Reference Include="Microsoft.AspNet.Identity.EntityFramework">
122+
<HintPath>..\packages\Microsoft.AspNet.Identity.EntityFramework.2.1.0\lib\net45\Microsoft.AspNet.Identity.EntityFramework.dll</HintPath>
123+
</Reference>
124+
<Reference Include="Owin">
125+
<HintPath>..\packages\Owin.1.0\lib\net40\Owin.dll</HintPath>
126+
</Reference>
127+
</ItemGroup>
128+
<ItemGroup>
129+
<Compile Include="App_Start\BundleConfig.cs" />
130+
<Compile Include="App_Start\FilterConfig.cs" />
131+
<Compile Include="App_Start\RouteConfig.cs" />
132+
<Compile Include="Helpers\BuildMonitorModelHandlerBase.cs" />
133+
<Compile Include="Helpers\CustomBuildMonitorModelHandler.cs" />
134+
<Compile Include="Helpers\IBuildMonitorModelHandler.cs" />
135+
<Compile Include="Helpers\RequestHelper.cs" />
136+
<Compile Include="Helpers\DefaultBuildMonitorModelHandler.cs" />
137+
<Compile Include="Models\Home\HiddenJob.cs" />
138+
<Compile Include="Models\Home\Settings\Group.cs" />
139+
<Compile Include="Models\Home\Settings\Job.cs" />
140+
<Compile Include="Models\Home\Settings\Settings.cs" />
141+
<Compile Include="Controllers\HomeController.cs" />
142+
<Compile Include="Global.asax.cs">
143+
<DependentUpon>Global.asax</DependentUpon>
144+
</Compile>
145+
<Compile Include="Models\Home\Build.cs" />
146+
<Compile Include="Models\Home\BuildJson.cs" />
147+
<Compile Include="Models\Home\BuildMonitorViewModel.cs" />
148+
<Compile Include="Models\Home\BuildsJson.cs" />
149+
<Compile Include="Models\Home\BuildStatus.cs" />
150+
<Compile Include="Models\Home\Project.cs" />
151+
<Compile Include="Properties\AssemblyInfo.cs" />
152+
</ItemGroup>
153+
<ItemGroup>
154+
<Content Include="App_Data\Settings.xml" />
155+
<Content Include="Content\bootstrap.css" />
156+
<Content Include="favicon.ico" />
157+
<Content Include="fonts\glyphicons-halflings-regular.svg" />
158+
<Content Include="Global.asax" />
159+
<Content Include="Content\Site.css" />
160+
<Content Include="Scripts\bootstrap.js" />
161+
<Content Include="Scripts\bootstrap.min.js" />
162+
<Content Include="fonts\kenzo.eot" />
163+
<Content Include="fonts\kenzo.otf" />
164+
<Content Include="fonts\kenzo.ttf" />
165+
<Content Include="fonts\kenzo.woff" />
166+
<None Include="Properties\PublishProfiles\Local.pubxml" />
167+
<None Include="Scripts\jquery-1.10.2.intellisense.js" />
168+
<Content Include="Scripts\jquery-1.10.2.js" />
169+
<Content Include="Scripts\jquery-1.10.2.min.js" />
170+
<None Include="Scripts\jquery.validate-vsdoc.js" />
171+
<Content Include="Scripts\jquery.validate.js" />
172+
<Content Include="Scripts\jquery.validate.min.js" />
173+
<Content Include="Scripts\jquery.validate.unobtrusive.js" />
174+
<Content Include="Scripts\jquery.validate.unobtrusive.min.js" />
175+
<Content Include="Scripts\Project\home.js" />
176+
<Content Include="Scripts\modernizr-2.6.2.js" />
177+
<Content Include="Scripts\respond.js" />
178+
<Content Include="Scripts\respond.min.js" />
179+
<Content Include="Scripts\_references.js" />
180+
<Content Include="Web.config" />
181+
<Content Include="Web.Debug.config">
182+
<DependentUpon>Web.config</DependentUpon>
183+
</Content>
184+
<Content Include="Web.Release.config">
185+
<DependentUpon>Web.config</DependentUpon>
186+
</Content>
187+
<Content Include="Views\Web.config" />
188+
<Content Include="Views\_ViewStart.cshtml" />
189+
<Content Include="Views\Shared\Error.cshtml" />
190+
<Content Include="Views\Shared\_Layout.cshtml" />
191+
<Content Include="Views\Home\Index.cshtml" />
192+
<Content Include="Scripts\jquery-1.10.2.min.map" />
193+
<Content Include="Views\Shared\_BuildItem.cshtml" />
194+
</ItemGroup>
195+
<ItemGroup />
196+
<ItemGroup>
197+
<Content Include="fonts\glyphicons-halflings-regular.woff" />
198+
<Content Include="fonts\glyphicons-halflings-regular.ttf" />
199+
<Content Include="fonts\glyphicons-halflings-regular.eot" />
200+
<Content Include="packages.config" />
201+
</ItemGroup>
202+
<PropertyGroup>
203+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
204+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
205+
</PropertyGroup>
206+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
207+
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
208+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
209+
<Target Name="MvcBuildViews" AfterTargets="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
210+
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(WebProjectOutputDir)" />
211+
</Target>
212+
<ProjectExtensions>
213+
<VisualStudio>
214+
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
215+
<WebProjectProperties>
216+
<UseIIS>False</UseIIS>
217+
<AutoAssignPort>True</AutoAssignPort>
218+
<DevelopmentServerPort>50316</DevelopmentServerPort>
219+
<DevelopmentServerVPath>/</DevelopmentServerVPath>
220+
<IISUrl>http://localhost:64568/</IISUrl>
221+
<NTLMAuthentication>False</NTLMAuthentication>
222+
<UseCustomServer>False</UseCustomServer>
223+
<CustomServerUrl>
224+
</CustomServerUrl>
225+
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
226+
</WebProjectProperties>
227+
</FlavorProperties>
228+
</VisualStudio>
229+
</ProjectExtensions>
230+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
231+
Other similar extension points exist, see Microsoft.Common.targets.
232+
<Target Name="BeforeBuild">
233+
</Target>
234+
<Target Name="AfterBuild">
235+
</Target> -->
236+
</Project>

0 commit comments

Comments
 (0)