Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dimage1 committed Mar 21, 2019
0 parents commit 69caa49
Show file tree
Hide file tree
Showing 91 changed files with 13,016 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Voice.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Voice", "Voice\Voice.csproj", "{AAD631BE-FFDE-42DF-9940-D7FA098AB532}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VoiceEngine", "VoiceEngine\VoiceEngine.csproj", "{0331000E-A3F4-4E03-A977-4608CE65A218}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{AAD631BE-FFDE-42DF-9940-D7FA098AB532}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AAD631BE-FFDE-42DF-9940-D7FA098AB532}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AAD631BE-FFDE-42DF-9940-D7FA098AB532}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AAD631BE-FFDE-42DF-9940-D7FA098AB532}.Release|Any CPU.Build.0 = Release|Any CPU
{0331000E-A3F4-4E03-A977-4608CE65A218}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0331000E-A3F4-4E03-A977-4608CE65A218}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0331000E-A3F4-4E03-A977-4608CE65A218}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0331000E-A3F4-4E03-A977-4608CE65A218}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
21 changes: 21 additions & 0 deletions Voice/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using Voice.Visual;

namespace Voice
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}
36 changes: 36 additions & 0 deletions Voice/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -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("Voice")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("607Home")]
[assembly: AssemblyProduct("Voice")]
[assembly: AssemblyCopyright("Copyright © 607Home 2009")]
[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("f0124db7-1b6a-4a35-af9c-de0f019b0c26")]

// 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")]
189 changes: 189 additions & 0 deletions Voice/Properties/Resources.Designer.cs

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

Loading

0 comments on commit 69caa49

Please sign in to comment.