Mercurial > silverbladetech
annotate Stocks/Stocks.Common/Stocks.Common.csproj @ 52:6235c5f0d9db
Original styles
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Thu, 19 Apr 2012 11:45:38 +0100 |
parents | 6e84a4c92378 |
children |
rev | line source |
---|---|
0 | 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)' == '' ">AnyCPU</Platform> | |
6 <ProductVersion>8.0.30703</ProductVersion> | |
7 <SchemaVersion>2.0</SchemaVersion> | |
8 <ProjectGuid>{25E11240-B82C-43D5-97C4-00FB0C445556}</ProjectGuid> | |
9 <OutputType>Library</OutputType> | |
10 <AppDesignerFolder>Properties</AppDesignerFolder> | |
11 <RootNamespace>Stocks.Common</RootNamespace> | |
12 <AssemblyName>Stocks.Common</AssemblyName> | |
13 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> | |
14 <FileAlignment>512</FileAlignment> | |
6
c812bca7b1ac
"Restore packages on build" enabled by Nuget 1.6
stevenh7776 stevenhollidge@hotmail.com
parents:
4
diff
changeset
|
15 <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\Stocks\</SolutionDir> |
c812bca7b1ac
"Restore packages on build" enabled by Nuget 1.6
stevenh7776 stevenhollidge@hotmail.com
parents:
4
diff
changeset
|
16 <RestorePackages>true</RestorePackages> |
0 | 17 </PropertyGroup> |
18 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
19 <DebugSymbols>true</DebugSymbols> | |
20 <DebugType>full</DebugType> | |
21 <Optimize>false</Optimize> | |
22 <OutputPath>bin\Debug\</OutputPath> | |
23 <DefineConstants>DEBUG;TRACE</DefineConstants> | |
24 <ErrorReport>prompt</ErrorReport> | |
25 <WarningLevel>4</WarningLevel> | |
6
c812bca7b1ac
"Restore packages on build" enabled by Nuget 1.6
stevenh7776 stevenhollidge@hotmail.com
parents:
4
diff
changeset
|
26 <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet> |
c812bca7b1ac
"Restore packages on build" enabled by Nuget 1.6
stevenh7776 stevenhollidge@hotmail.com
parents:
4
diff
changeset
|
27 <RunCodeAnalysis>false</RunCodeAnalysis> |
0 | 28 </PropertyGroup> |
29 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
30 <DebugType>pdbonly</DebugType> | |
31 <Optimize>true</Optimize> | |
32 <OutputPath>bin\Release\</OutputPath> | |
33 <DefineConstants>TRACE</DefineConstants> | |
34 <ErrorReport>prompt</ErrorReport> | |
35 <WarningLevel>4</WarningLevel> | |
36 </PropertyGroup> | |
37 <ItemGroup> | |
38 <Reference Include="Newtonsoft.Json"> | |
39 <HintPath>..\packages\Newtonsoft.Json.4.0.8\lib\net40\Newtonsoft.Json.dll</HintPath> | |
40 </Reference> | |
41 <Reference Include="NLog"> | |
42 <HintPath>..\packages\NLog.2.0.0.2000\lib\net40\NLog.dll</HintPath> | |
43 </Reference> | |
44 <Reference Include="System" /> | |
45 <Reference Include="System.Core" /> | |
46 <Reference Include="System.Xml.Linq" /> | |
47 <Reference Include="System.Data.DataSetExtensions" /> | |
48 <Reference Include="Microsoft.CSharp" /> | |
49 <Reference Include="System.Data" /> | |
50 <Reference Include="System.Xml" /> | |
51 </ItemGroup> | |
52 <ItemGroup> | |
53 <Compile Include="ConfigurationService.cs" /> | |
54 <Compile Include="Core\ExtensionMethods.cs" /> | |
4
57f20ba55884
Fix for webClientShim to use downloadString instead of downloadData
stevenh7776 stevenhollidge@hotmail.com
parents:
2
diff
changeset
|
55 <Compile Include="Core\TimedDelegates.cs" /> |
8
6e84a4c92378
FakeWebClientShim added and refactoring
stevenh7776 stevenhollidge@hotmail.com
parents:
6
diff
changeset
|
56 <Compile Include="EventArgs\PriceChangedEventArgs.cs" /> |
0 | 57 <Compile Include="Factory.cs" /> |
8
6e84a4c92378
FakeWebClientShim added and refactoring
stevenh7776 stevenhollidge@hotmail.com
parents:
6
diff
changeset
|
58 <Compile Include="Fakes\FakeWebClientShim.cs" /> |
0 | 59 <Compile Include="IConfigurationService.cs" /> |
60 <Compile Include="Exceptions\InvalidWebPriceData.cs" /> | |
61 <Compile Include="IStocksService.cs" /> | |
2
29ed98d659e9
Adding WebClientShim files
stevenh7776 stevenhollidge@hotmail.com
parents:
0
diff
changeset
|
62 <Compile Include="IWebClientShim.cs" /> |
0 | 63 <Compile Include="Models\Company.cs" /> |
64 <Compile Include="Models\Price.cs" /> | |
65 <Compile Include="Models\Quote.cs" /> | |
66 <Compile Include="Models\SummaryStats.cs" /> | |
67 <Compile Include="Models\WebRequestStats.cs" /> | |
68 <Compile Include="Properties\AssemblyInfo.cs" /> | |
69 <Compile Include="Core\FileSerializer.cs" /> | |
2
29ed98d659e9
Adding WebClientShim files
stevenh7776 stevenhollidge@hotmail.com
parents:
0
diff
changeset
|
70 <Compile Include="WebClientShim.cs" /> |
0 | 71 </ItemGroup> |
72 <ItemGroup /> | |
73 <ItemGroup> | |
74 <None Include="packages.config" /> | |
75 </ItemGroup> | |
76 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |
6
c812bca7b1ac
"Restore packages on build" enabled by Nuget 1.6
stevenh7776 stevenhollidge@hotmail.com
parents:
4
diff
changeset
|
77 <Import Project="$(SolutionDir)\.nuget\nuget.targets" /> |
0 | 78 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
79 Other similar extension points exist, see Microsoft.Common.targets. | |
80 <Target Name="BeforeBuild"> | |
81 </Target> | |
82 <Target Name="AfterBuild"> | |
83 </Target> | |
84 --> | |
85 </Project> |