Skip to content

Commit bf7d398

Browse files
committed
Main Commit
The first main commit of AdVenture Calculator.
1 parent 763c2ee commit bf7d398

35 files changed

+8004
-0
lines changed

AdVentureCalculator.sln

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2012
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdVentureCalculator", "AdventureCalculator\AdVentureCalculator.csproj", "{1742490E-4B49-4822-99B7-E3B0CA5B4242}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Any CPU = Debug|Any CPU
9+
Release|Any CPU = Release|Any CPU
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{1742490E-4B49-4822-99B7-E3B0CA5B4242}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13+
{1742490E-4B49-4822-99B7-E3B0CA5B4242}.Debug|Any CPU.Build.0 = Debug|Any CPU
14+
{1742490E-4B49-4822-99B7-E3B0CA5B4242}.Release|Any CPU.ActiveCfg = Release|Any CPU
15+
{1742490E-4B49-4822-99B7-E3B0CA5B4242}.Release|Any CPU.Build.0 = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal
Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
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+
<ProjectGuid>{1742490E-4B49-4822-99B7-E3B0CA5B4242}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>AdVentureCalculator</RootNamespace>
11+
<AssemblyName>AdVentureCalculator</AssemblyName>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<PlatformTarget>AnyCPU</PlatformTarget>
17+
<DebugSymbols>true</DebugSymbols>
18+
<DebugType>full</DebugType>
19+
<Optimize>false</Optimize>
20+
<OutputPath>bin\Debug\</OutputPath>
21+
<DefineConstants>DEBUG;TRACE</DefineConstants>
22+
<ErrorReport>prompt</ErrorReport>
23+
<WarningLevel>4</WarningLevel>
24+
</PropertyGroup>
25+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26+
<PlatformTarget>AnyCPU</PlatformTarget>
27+
<DebugType>pdbonly</DebugType>
28+
<Optimize>true</Optimize>
29+
<OutputPath>bin\Release\</OutputPath>
30+
<DefineConstants>TRACE</DefineConstants>
31+
<ErrorReport>prompt</ErrorReport>
32+
<WarningLevel>4</WarningLevel>
33+
</PropertyGroup>
34+
<PropertyGroup>
35+
<ApplicationIcon>Resources\Icons\MainIcon.ico</ApplicationIcon>
36+
</PropertyGroup>
37+
<ItemGroup>
38+
<Reference Include="System" />
39+
<Reference Include="System.Core" />
40+
<Reference Include="System.Data" />
41+
<Reference Include="System.Drawing" />
42+
<Reference Include="System.Windows.Forms" />
43+
<Reference Include="System.Windows.Forms.DataVisualization" />
44+
</ItemGroup>
45+
<ItemGroup>
46+
<Compile Include="Controller\AngelInvestorController.cs" />
47+
<Compile Include="Controller\UpgradeController.cs" />
48+
<Compile Include="DecimalTruncateFormatProvider.cs" />
49+
<Compile Include="EnumHelper.cs" />
50+
<Compile Include="FunctionChainer.cs" />
51+
<Compile Include="LZF.cs" />
52+
<Compile Include="MainForm.cs">
53+
<SubType>Form</SubType>
54+
</Compile>
55+
<Compile Include="MainForm.Designer.cs">
56+
<DependentUpon>MainForm.cs</DependentUpon>
57+
</Compile>
58+
<Compile Include="Model\AdVentureObject.cs" />
59+
<Compile Include="Model\AngelInvestor.cs" />
60+
<Compile Include="Model\AngelUpgrade.cs" />
61+
<Compile Include="Model\Business.cs" />
62+
<Compile Include="Controller\BusinessController.cs" />
63+
<Compile Include="Model\BusinessType.cs" />
64+
<Compile Include="Model\CashUpgrade.cs" />
65+
<Compile Include="Model\IAdVentureObject.cs" />
66+
<Compile Include="Model\Manager.cs" />
67+
<Compile Include="Controller\ManagerController.cs" />
68+
<Compile Include="Model\Planet.cs" />
69+
<Compile Include="Model\PurchasableObject.cs" />
70+
<Compile Include="Model\UpgradeObject.cs" />
71+
<Compile Include="MonetaryValueDisplay.cs" />
72+
<Compile Include="Program.cs" />
73+
<Compile Include="Properties\AssemblyInfo.cs" />
74+
<EmbeddedResource Include="MainForm.resx">
75+
<DependentUpon>MainForm.cs</DependentUpon>
76+
</EmbeddedResource>
77+
<EmbeddedResource Include="Properties\Resources.resx">
78+
<Generator>ResXFileCodeGenerator</Generator>
79+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
80+
<SubType>Designer</SubType>
81+
</EmbeddedResource>
82+
<Compile Include="Properties\Resources.Designer.cs">
83+
<AutoGen>True</AutoGen>
84+
<DependentUpon>Resources.resx</DependentUpon>
85+
<DesignTime>True</DesignTime>
86+
</Compile>
87+
<None Include="Properties\Settings.settings">
88+
<Generator>SettingsSingleFileGenerator</Generator>
89+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
90+
</None>
91+
<Compile Include="Properties\Settings.Designer.cs">
92+
<AutoGen>True</AutoGen>
93+
<DependentUpon>Settings.settings</DependentUpon>
94+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
95+
</Compile>
96+
<None Include="Resources\AC Upgrades.xlsx" />
97+
</ItemGroup>
98+
<ItemGroup>
99+
<None Include="App.config" />
100+
</ItemGroup>
101+
<ItemGroup>
102+
<Content Include="Resources\Icons\MainIcon.ico" />
103+
<Content Include="Resources\Images\MainImage.png" />
104+
</ItemGroup>
105+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
106+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
107+
Other similar extension points exist, see Microsoft.Common.targets.
108+
<Target Name="BeforeBuild">
109+
</Target>
110+
<Target Name="AfterBuild">
111+
</Target>
112+
-->
113+
</Project>

AdVentureCalculator/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
5+
</startup>
6+
</configuration>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using AdVentureCalculator.Model;
2+
3+
namespace AdVentureCalculator.Controller
4+
{
5+
public static class AngelInvestorController
6+
{
7+
#region Initializer
8+
9+
public static AngelInvestor AngelInvestors = new AngelInvestor();
10+
11+
#endregion Initializer
12+
}
13+
}

0 commit comments

Comments
 (0)