Mercurial > repos > IBBoard.Tests
annotate IBBoard.Tests.csproj @ 13:f6fd30d3b817
Fixes #25: Enum parsing
* Add tests for enum parsing class
* Update XmlTools exception checks
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Mon, 30 Nov 2009 21:00:41 +0000 |
parents | 298786adcddc |
children | 15cf2fe2a627 |
rev | line source |
---|---|
0
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
1 <?xml version="1.0" encoding="utf-8"?> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
2 <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
3 <PropertyGroup> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
6 <ProductVersion>8.0.50727</ProductVersion> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
7 <SchemaVersion>2.0</SchemaVersion> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
8 <ProjectGuid>{4160F7B6-4CFA-41FC-B5D7-5C9AE06FEBA7}</ProjectGuid> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
9 <OutputType>Library</OutputType> |
4
a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
2
diff
changeset
|
10 <RootNamespace>IBBoard</RootNamespace> |
0
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
11 </PropertyGroup> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
12 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
13 <DebugSymbols>true</DebugSymbols> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
14 <DebugType>full</DebugType> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
15 <Optimize>false</Optimize> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
16 <OutputPath>bin\Debug</OutputPath> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
17 <DefineConstants>DEBUG</DefineConstants> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
18 <ErrorReport>prompt</ErrorReport> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
19 <WarningLevel>4</WarningLevel> |
4
a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
2
diff
changeset
|
20 <AssemblyName>IBBoard.Tests</AssemblyName> |
0
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
21 </PropertyGroup> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
22 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
23 <DebugType>none</DebugType> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
24 <Optimize>false</Optimize> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
25 <OutputPath>bin\Release</OutputPath> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
26 <ErrorReport>prompt</ErrorReport> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
27 <WarningLevel>4</WarningLevel> |
4
a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
2
diff
changeset
|
28 <AssemblyName>IBBoard.Tests2</AssemblyName> |
0
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
29 </PropertyGroup> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
30 <ItemGroup> |
2
83d1e27d792d
* Move IBBMath tests to match namespace move in main project
IBBoard <dev@ibboard.co.uk>
parents:
0
diff
changeset
|
31 <Compile Include="CustomMath\IBBMathTests.cs" /> |
4
a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
2
diff
changeset
|
32 <Compile Include="Limits\NumericSizeConstrainedLimitTest.cs" /> |
5
abf657708a35
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
4
diff
changeset
|
33 <Compile Include="Limits\SimpleRoundedPercentageLimitTest.cs" /> |
8 | 34 <Compile Include="Limits\AbstractLimitTest.cs" /> |
35 <Compile Include="Limits\AbsoluteNumericLimitTest.cs" /> | |
36 <Compile Include="Limits\UnlimitedLimitTest.cs" /> | |
12
298786adcddc
Fixes #25: Add method for parsing enums from XML elements
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
37 <Compile Include="Xml\XmlToolsTests.cs" /> |
13 | 38 <Compile Include="EnumToolsTests.cs" /> |
0
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
39 </ItemGroup> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
40 <ItemGroup> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
41 <Reference Include="System" /> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
42 <Reference Include="nunit.core, Version=2.4.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77" /> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
43 <Reference Include="nunit.framework, Version=2.4.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77" /> |
12
298786adcddc
Fixes #25: Add method for parsing enums from XML elements
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
44 <Reference Include="System.Xml" /> |
0
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
45 </ItemGroup> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
46 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
47 <ItemGroup> |
2
83d1e27d792d
* Move IBBMath tests to match namespace move in main project
IBBoard <dev@ibboard.co.uk>
parents:
0
diff
changeset
|
48 <Folder Include="CustomMath\" /> |
4
a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
2
diff
changeset
|
49 <Folder Include="Limits\" /> |
12
298786adcddc
Fixes #25: Add method for parsing enums from XML elements
IBBoard <dev@ibboard.co.uk>
parents:
8
diff
changeset
|
50 <Folder Include="Xml\" /> |
0
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
51 </ItemGroup> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
52 <ItemGroup> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
53 <ProjectReference Include="..\IBBoard\IBBoard.csproj"> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
54 <Project>{5DFD64F6-FC2B-4B4F-B92E-483BAC468105}</Project> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
55 <Name>IBBoard</Name> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
56 </ProjectReference> |
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
57 </ItemGroup> |
4
a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
2
diff
changeset
|
58 <ProjectExtensions> |
a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
2
diff
changeset
|
59 <MonoDevelop> |
a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
2
diff
changeset
|
60 <Properties> |
a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
2
diff
changeset
|
61 <Policies> |
a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
2
diff
changeset
|
62 <DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="FileFormatDefault" /> |
a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
2
diff
changeset
|
63 </Policies> |
a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
2
diff
changeset
|
64 </Properties> |
a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
2
diff
changeset
|
65 </MonoDevelop> |
a6b26fe532df
Re #24: Add "limit" objects that can be used for numeric limits
IBBoard <dev@ibboard.co.uk>
parents:
2
diff
changeset
|
66 </ProjectExtensions> |
0
7bd668aeba3c
Re #19 - Add round to half\n * Commit tests for rounding
IBBoard <dev@ibboard.co.uk>
parents:
diff
changeset
|
67 </Project> |