Skip to content

Commit

Permalink
Initial Version, April 2, 2021
Browse files Browse the repository at this point in the history
  • Loading branch information
Romney J. Hogaboam committed Apr 2, 2021
1 parent 957573a commit 540a983
Show file tree
Hide file tree
Showing 24 changed files with 1,974 additions and 0 deletions.
25 changes: 25 additions & 0 deletions American Football Scoreboard.sln
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31005.135
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "American Football Scoreboard", "American Football Scoreboard\American Football Scoreboard.csproj", "{C49FC379-F782-4B84-A8F3-9B392E77776D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C49FC379-F782-4B84-A8F3-9B392E77776D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C49FC379-F782-4B84-A8F3-9B392E77776D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C49FC379-F782-4B84-A8F3-9B392E77776D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C49FC379-F782-4B84-A8F3-9B392E77776D}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {4952E87E-33CE-4187-959E-B6939107F074}
EndGlobalSection
EndGlobal
122 changes: 122 additions & 0 deletions American Football Scoreboard/American Football Scoreboard.csproj
@@ -0,0 +1,122 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C49FC379-F782-4B84-A8F3-9B392E77776D}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>American_Football_Scoreboard</RootNamespace>
<AssemblyName>American Football Scoreboard</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="frmMain.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="frmMain.Designer.cs">
<DependentUpon>frmMain.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="frmMain.resx">
<DependentUpon>frmMain.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="Output\AwayTeamName.txt" />
<Content Include="Output\AwayTeamScore.txt" />
<Content Include="Output\Distance.txt" />
<Content Include="Output\Down.txt" />
<Content Include="Output\GameClock.txt" />
<Content Include="Output\HomeTeamName.txt" />
<Content Include="Output\HomeTeamScore.txt" />
<Content Include="Output\Period.txt" />
<Content Include="Output\PlayClock.txt" />
<Content Include="Output\Supplemental.txt" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.7.2">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.7.2 %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
30 changes: 30 additions & 0 deletions American Football Scoreboard/App.config
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="American_Football_Scoreboard.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<userSettings>
<American_Football_Scoreboard.Properties.Settings>
<setting name="DefaultPeriod" serializeAs="String">
<value>15:00</value>
</setting>
<setting name="DefaultPlay" serializeAs="String">
<value>40</value>
</setting>
<setting name="OutputPath" serializeAs="String">
<value />
</setting>
<setting name="GoalText" serializeAs="String">
<value>Goal</value>
</setting>
<setting name="TimeoutsPerHalf" serializeAs="String">
<value>3</value>
</setting>
</American_Football_Scoreboard.Properties.Settings>
</userSettings>
</configuration>
1 change: 1 addition & 0 deletions American Football Scoreboard/Output/AwayTeamName.txt
@@ -0,0 +1 @@
Eagles
1 change: 1 addition & 0 deletions American Football Scoreboard/Output/AwayTeamScore.txt
@@ -0,0 +1 @@
2
@@ -0,0 +1 @@
3
1 change: 1 addition & 0 deletions American Football Scoreboard/Output/Distance.txt
@@ -0,0 +1 @@
8
1 change: 1 addition & 0 deletions American Football Scoreboard/Output/Down.txt
@@ -0,0 +1 @@
1st
1 change: 1 addition & 0 deletions American Football Scoreboard/Output/GameClock.txt
@@ -0,0 +1 @@
14:58
Empty file.
1 change: 1 addition & 0 deletions American Football Scoreboard/Output/HomeTeamScore.txt
@@ -0,0 +1 @@
1
@@ -0,0 +1 @@
3
1 change: 1 addition & 0 deletions American Football Scoreboard/Output/Period.txt
@@ -0,0 +1 @@
2nd
1 change: 1 addition & 0 deletions American Football Scoreboard/Output/PlayClock.txt
@@ -0,0 +1 @@
38
1 change: 1 addition & 0 deletions American Football Scoreboard/Output/Supplemental.txt
@@ -0,0 +1 @@

22 changes: 22 additions & 0 deletions American Football Scoreboard/Program.cs
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace American_Football_Scoreboard
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmMain());
}
}
}
36 changes: 36 additions & 0 deletions American Football Scoreboard/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("American Football Scoreboard")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("American Football Scoreboard")]
[assembly: AssemblyCopyright("Copyright © 2021")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("c49fc379-f782-4b84-a8f3-9b392e77776d")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
70 changes: 70 additions & 0 deletions American Football Scoreboard/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 540a983

Please sign in to comment.