Skip to content

Commit d3e1391

Browse files
committed
Initial code commit
Initial version.
1 parent a50008d commit d3e1391

23 files changed

+1254
-0
lines changed

BusNotifier.sln

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BusNotifier", "BusNotifier\BusNotifier.csproj", "{305CDC98-F2AE-4A3F-BAB5-A1E1EA37D9CF}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|x86 = Debug|x86
9+
Release|x86 = Release|x86
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{305CDC98-F2AE-4A3F-BAB5-A1E1EA37D9CF}.Debug|x86.ActiveCfg = Debug|x86
13+
{305CDC98-F2AE-4A3F-BAB5-A1E1EA37D9CF}.Debug|x86.Build.0 = Debug|x86
14+
{305CDC98-F2AE-4A3F-BAB5-A1E1EA37D9CF}.Release|x86.ActiveCfg = Release|x86
15+
{305CDC98-F2AE-4A3F-BAB5-A1E1EA37D9CF}.Release|x86.Build.0 = Release|x86
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal

BusNotifier/BusNotifier.csproj

+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6+
<ProductVersion>8.0.30703</ProductVersion>
7+
<SchemaVersion>2.0</SchemaVersion>
8+
<ProjectGuid>{305CDC98-F2AE-4A3F-BAB5-A1E1EA37D9CF}</ProjectGuid>
9+
<OutputType>WinExe</OutputType>
10+
<AppDesignerFolder>Properties</AppDesignerFolder>
11+
<RootNamespace>BusNotifier</RootNamespace>
12+
<AssemblyName>BusNotifier</AssemblyName>
13+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14+
<FileAlignment>512</FileAlignment>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
17+
<PlatformTarget>x86</PlatformTarget>
18+
<DebugSymbols>true</DebugSymbols>
19+
<DebugType>full</DebugType>
20+
<Optimize>false</Optimize>
21+
<OutputPath>bin\Debug\</OutputPath>
22+
<DefineConstants>DEBUG;TRACE</DefineConstants>
23+
<ErrorReport>prompt</ErrorReport>
24+
<WarningLevel>4</WarningLevel>
25+
</PropertyGroup>
26+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
27+
<PlatformTarget>x86</PlatformTarget>
28+
<DebugType>pdbonly</DebugType>
29+
<Optimize>true</Optimize>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DefineConstants>TRACE</DefineConstants>
32+
<ErrorReport>prompt</ErrorReport>
33+
<WarningLevel>4</WarningLevel>
34+
</PropertyGroup>
35+
<ItemGroup>
36+
<Reference Include="System" />
37+
<Reference Include="System.Core" />
38+
<Reference Include="System.Xml.Linq" />
39+
<Reference Include="System.Data.DataSetExtensions" />
40+
<Reference Include="System.Data" />
41+
<Reference Include="System.Deployment" />
42+
<Reference Include="System.Drawing" />
43+
<Reference Include="System.Windows.Forms" />
44+
<Reference Include="System.Xml" />
45+
</ItemGroup>
46+
<ItemGroup>
47+
<Compile Include="ConfigSettings.Designer.cs">
48+
<AutoGen>True</AutoGen>
49+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
50+
<DependentUpon>ConfigSettings.settings</DependentUpon>
51+
</Compile>
52+
<Compile Include="ConfigurationDialog.cs">
53+
<SubType>Form</SubType>
54+
</Compile>
55+
<Compile Include="ConfigurationDialog.Designer.cs">
56+
<DependentUpon>ConfigurationDialog.cs</DependentUpon>
57+
</Compile>
58+
<Compile Include="IBackend.cs" />
59+
<Compile Include="MetroInfoBackend.cs" />
60+
<Compile Include="Program.cs" />
61+
<Compile Include="Properties\AssemblyInfo.cs" />
62+
<Compile Include="Route.cs" />
63+
<Compile Include="RouteData.cs" />
64+
<Compile Include="Stop.cs" />
65+
<Compile Include="StopData.cs" />
66+
<Compile Include="TooltipData.cs" />
67+
<Compile Include="TripData.cs" />
68+
<EmbeddedResource Include="ConfigurationDialog.resx">
69+
<DependentUpon>ConfigurationDialog.cs</DependentUpon>
70+
</EmbeddedResource>
71+
<EmbeddedResource Include="Properties\Resources.resx">
72+
<Generator>ResXFileCodeGenerator</Generator>
73+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
74+
<SubType>Designer</SubType>
75+
</EmbeddedResource>
76+
<Compile Include="Properties\Resources.Designer.cs">
77+
<AutoGen>True</AutoGen>
78+
<DependentUpon>Resources.resx</DependentUpon>
79+
</Compile>
80+
<EmbeddedResource Include="TrayIcon.ico" />
81+
<None Include="app.config" />
82+
<None Include="ConfigSettings.settings">
83+
<Generator>SettingsSingleFileGenerator</Generator>
84+
<LastGenOutput>ConfigSettings.Designer.cs</LastGenOutput>
85+
</None>
86+
<None Include="Properties\Settings.settings">
87+
<Generator>SettingsSingleFileGenerator</Generator>
88+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
89+
</None>
90+
<Compile Include="Properties\Settings.Designer.cs">
91+
<AutoGen>True</AutoGen>
92+
<DependentUpon>Settings.settings</DependentUpon>
93+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
94+
</Compile>
95+
</ItemGroup>
96+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
97+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
98+
Other similar extension points exist, see Microsoft.Common.targets.
99+
<Target Name="BeforeBuild">
100+
</Target>
101+
<Target Name="AfterBuild">
102+
</Target>
103+
-->
104+
</Project>

BusNotifier/ConfigSettings.Designer.cs

+110
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

BusNotifier/ConfigSettings.settings

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version='1.0' encoding='utf-8'?>
2+
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="BusNotifier" GeneratedClassName="ConfigSettings">
3+
<Profiles />
4+
<Settings>
5+
<Setting Name="StopNumber" Type="System.String" Scope="User">
6+
<Value Profile="(Default)">3057</Value>
7+
</Setting>
8+
<Setting Name="RouteNumber" Type="System.String" Scope="User">
9+
<Value Profile="(Default)">40</Value>
10+
</Setting>
11+
<Setting Name="RouteUniqueIdentifier" Type="System.String" Scope="User">
12+
<Value Profile="(Default)">492</Value>
13+
</Setting>
14+
<Setting Name="EnableAlerts" Type="System.Boolean" Scope="User">
15+
<Value Profile="(Default)">False</Value>
16+
</Setting>
17+
<Setting Name="AlertStart" Type="System.UInt32" Scope="User">
18+
<Value Profile="(Default)">300</Value>
19+
</Setting>
20+
<Setting Name="AlertEnd" Type="System.UInt32" Scope="User">
21+
<Value Profile="(Default)">600</Value>
22+
</Setting>
23+
<Setting Name="AlertWhenETA" Type="System.UInt32" Scope="User">
24+
<Value Profile="(Default)">5</Value>
25+
</Setting>
26+
</Settings>
27+
</SettingsFile>

0 commit comments

Comments
 (0)