-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForward Calculator.csproj
122 lines (122 loc) · 4.88 KB
/
Forward Calculator.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<PropertyGroup>
<ProjectGuid>{CC2E0146-2482-40E3-B270-398174CDE46A}</ProjectGuid>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>WinExe</OutputType>
<RootNamespace>Forward_Calculator</RootNamespace>
<AssemblyName>Forward Calculator</AssemblyName>
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
<AppDesignerFolder>Properties</AppDesignerFolder>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<Prefer32Bit>True</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>bin\Debug\</OutputPath>
<DebugSymbols>True</DebugSymbols>
<DebugType>Full</DebugType>
<Optimize>False</Optimize>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\Release\</OutputPath>
<DebugSymbols>False</DebugSymbols>
<DebugType>None</DebugType>
<Optimize>True</Optimize>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="HtmlAgilityPack">
<HintPath>..\StockHistoryScraper\bin\Debug\HtmlAgilityPack.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Bond.cs" />
<Compile Include="Calculation.cs" />
<Compile Include="Calculator.cs" />
<Compile Include="Calculator.Designer.cs">
<DependentUpon>Calculator.cs</DependentUpon>
</Compile>
<Compile Include="Colours.cs" />
<Compile Include="DateHandling.cs" />
<Compile Include="DividendForecaster.cs" />
<Compile Include="DividendForecaster.Designer.cs">
<DependentUpon>DividendForecaster.cs</DependentUpon>
</Compile>
<Compile Include="DividendPrediction.cs" />
<Compile Include="DividendTable.cs" />
<Compile Include="DividendTable.Designer.cs">
<DependentUpon>DividendTable.cs</DependentUpon>
</Compile>
<Compile Include="FileHandling.cs" />
<Compile Include="ForwardCalculator.cs" />
<Compile Include="ForwardCalculator.Designer.cs">
<DependentUpon>ForwardCalculator.cs</DependentUpon>
</Compile>
<Compile Include="HtmlHandling.cs" />
<Compile Include="InputBox.cs" />
<Compile Include="InputBox.Designer.cs">
<DependentUpon>InputBox.cs</DependentUpon>
</Compile>
<Compile Include="InterestRegion.cs" />
<Compile Include="MainForm.cs" />
<Compile Include="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ScreenCapture.cs" />
<Compile Include="StockInformation.cs" />
<Compile Include="StockViewer.cs" />
<Compile Include="StockViewer.Designer.cs">
<DependentUpon>StockViewer.cs</DependentUpon>
</Compile>
<Compile Include="TimeInterval.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Calculator.resx">
<DependentUpon>Calculator.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="DividendForecaster.resx">
<DependentUpon>DividendForecaster.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="DividendTable.resx">
<DependentUpon>DividendTable.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="ForwardCalculator.resx">
<DependentUpon>ForwardCalculator.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="InputBox.resx">
<DependentUpon>InputBox.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="StockViewer.resx">
<DependentUpon>StockViewer.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>