Subversion Repositories AndroidProjects

Rev

Rev 1454 | Rev 1456 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
667 chris 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>{17A932B1-856B-4CCF-975E-DE9AE5F781A0}</ProjectGuid>
8
    <OutputType>Library</OutputType>
9
    <AppDesignerFolder>Properties</AppDesignerFolder>
10
    <RootNamespace>BauzoidNET</RootNamespace>
11
    <AssemblyName>BauzoidNET</AssemblyName>
12
    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13
    <FileAlignment>512</FileAlignment>
14
  </PropertyGroup>
15
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16
    <DebugSymbols>true</DebugSymbols>
17
    <DebugType>full</DebugType>
18
    <Optimize>false</Optimize>
19
    <OutputPath>bin\Debug\</OutputPath>
20
    <DefineConstants>DEBUG;TRACE</DefineConstants>
21
    <ErrorReport>prompt</ErrorReport>
22
    <WarningLevel>4</WarningLevel>
23
  </PropertyGroup>
24
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25
    <DebugType>pdbonly</DebugType>
26
    <Optimize>true</Optimize>
27
    <OutputPath>bin\Release\</OutputPath>
28
    <DefineConstants>TRACE</DefineConstants>
29
    <ErrorReport>prompt</ErrorReport>
30
    <WarningLevel>4</WarningLevel>
31
  </PropertyGroup>
32
  <ItemGroup>
1453 chris 33
    <Reference Include="OpenTK, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
34
      <SpecificVersion>False</SpecificVersion>
35
      <HintPath>..\..\..\..\OpenTK\1.1\Binaries\OpenTK\Release\OpenTK.dll</HintPath>
36
    </Reference>
37
    <Reference Include="OpenTK.Compatibility, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
38
      <SpecificVersion>False</SpecificVersion>
39
      <HintPath>..\..\..\..\OpenTK\1.1\Binaries\OpenTK\Release\OpenTK.Compatibility.dll</HintPath>
40
    </Reference>
41
    <Reference Include="OpenTK.GLControl, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
42
      <SpecificVersion>False</SpecificVersion>
43
      <HintPath>..\..\..\..\OpenTK\1.1\Binaries\OpenTK\Release\OpenTK.GLControl.dll</HintPath>
44
    </Reference>
667 chris 45
    <Reference Include="System" />
46
    <Reference Include="System.Core" />
789 chris 47
    <Reference Include="System.Drawing" />
811 chris 48
    <Reference Include="System.Windows" />
49
    <Reference Include="System.Windows.Forms" />
667 chris 50
    <Reference Include="System.Xml.Linq" />
51
    <Reference Include="System.Data.DataSetExtensions" />
52
    <Reference Include="Microsoft.CSharp" />
53
    <Reference Include="System.Data" />
54
    <Reference Include="System.Xml" />
55
  </ItemGroup>
56
  <ItemGroup>
789 chris 57
    <Compile Include="app\BauzoidApp.cs" />
58
    <Compile Include="app\BauzoidObject.cs" />
795 chris 59
    <Compile Include="app\Consts.cs" />
60
    <Compile Include="app\LogUtil.cs" />
823 chris 61
    <Compile Include="controls\CheckToolButton.cs">
62
      <SubType>Component</SubType>
63
    </Compile>
64
    <Compile Include="controls\ColorPalette.cs">
65
      <SubType>UserControl</SubType>
66
    </Compile>
67
    <Compile Include="controls\ColorPalette.Designer.cs">
68
      <DependentUpon>ColorPalette.cs</DependentUpon>
69
    </Compile>
811 chris 70
    <Compile Include="controls\ColorWidget.cs">
71
      <SubType>UserControl</SubType>
72
    </Compile>
73
    <Compile Include="controls\ColorWidget.Designer.cs">
74
      <DependentUpon>ColorWidget.cs</DependentUpon>
75
    </Compile>
823 chris 76
    <Compile Include="controls\RadioToolButton.cs">
820 chris 77
      <SubType>Component</SubType>
78
    </Compile>
792 chris 79
    <Compile Include="file\FileUtil.cs" />
1454 chris 80
    <Compile Include="graphics\Font.cs" />
1455 chris 81
    <Compile Include="graphics\FontUtil.cs" />
789 chris 82
    <Compile Include="graphics\Graphics.cs" />
791 chris 83
    <Compile Include="graphics\GraphicsObject.cs" />
787 chris 84
    <Compile Include="graphics\model\AttributeArray.cs" />
85
    <Compile Include="graphics\model\Geometry.cs" />
86
    <Compile Include="graphics\model\GeometryUtil.cs" />
87
    <Compile Include="graphics\model\IndexStream.cs" />
88
    <Compile Include="graphics\model\SimpleGeometry.cs" />
783 chris 89
    <Compile Include="graphics\model\VertexAttribute.cs" />
90
    <Compile Include="graphics\model\VertexStream.cs" />
1309 chris 91
    <Compile Include="graphics\PrimitiveShader.cs" />
787 chris 92
    <Compile Include="graphics\renderstates\BlendingStates.cs" />
93
    <Compile Include="graphics\renderstates\CullingStates.cs" />
94
    <Compile Include="graphics\renderstates\DepthTestStates.cs" />
95
    <Compile Include="graphics\renderstates\RenderStates.cs" />
96
    <Compile Include="graphics\renderstates\RenderStatesConfiguration.cs" />
97
    <Compile Include="graphics\renderstates\RenderStatesObject.cs" />
98
    <Compile Include="graphics\renderstates\ScissorStates.cs" />
99
    <Compile Include="graphics\renderstates\TextureStage.cs" />
1309 chris 100
    <Compile Include="graphics\RenderUtil.cs" />
787 chris 101
    <Compile Include="graphics\shader\ShaderProgram.cs" />
102
    <Compile Include="graphics\shader\ShaderUniform.cs" />
792 chris 103
    <Compile Include="graphics\shader\ShaderUtil.cs" />
1304 chris 104
    <Compile Include="graphics\sprite\SimpleSprite.cs" />
797 chris 105
    <Compile Include="graphics\sprite\Sprite.cs" />
1304 chris 106
    <Compile Include="graphics\sprite\SpriteInstance.cs" />
107
    <Compile Include="graphics\sprite\SpriteRegion.cs" />
792 chris 108
    <Compile Include="graphics\sprite\SpriteShader.cs" />
1304 chris 109
    <Compile Include="graphics\sprite\SpriteTransform.cs" />
110
    <Compile Include="graphics\sprite\SpriteUtil.cs" />
1454 chris 111
    <Compile Include="graphics\sprite\TileBatch.cs" />
825 chris 112
    <Compile Include="graphics\texture\Framebuffer.cs" />
787 chris 113
    <Compile Include="graphics\texture\Texture.cs" />
1441 chris 114
    <Compile Include="math\Line2.cs" />
667 chris 115
    <Compile Include="math\MathUtil.cs" />
783 chris 116
    <Compile Include="math\Matrix3.cs" />
117
    <Compile Include="math\Matrix4.cs" />
118
    <Compile Include="math\Vector2.cs" />
119
    <Compile Include="math\Vector3.cs" />
120
    <Compile Include="math\Vector4.cs" />
1310 chris 121
    <Compile Include="parser\ParseUtil.cs" />
806 chris 122
    <Compile Include="parser\Preprocessor.cs" />
123
    <Compile Include="parser\ScanException.cs" />
124
    <Compile Include="parser\Tokenizer.cs" />
667 chris 125
    <Compile Include="Properties\AssemblyInfo.cs" />
813 chris 126
    <Compile Include="Properties\Resources.Designer.cs">
127
      <AutoGen>True</AutoGen>
128
      <DesignTime>True</DesignTime>
129
      <DependentUpon>Resources.resx</DependentUpon>
130
    </Compile>
667 chris 131
  </ItemGroup>
811 chris 132
  <ItemGroup>
823 chris 133
    <EmbeddedResource Include="controls\ColorPalette.resx">
134
      <DependentUpon>ColorPalette.cs</DependentUpon>
135
    </EmbeddedResource>
811 chris 136
    <EmbeddedResource Include="controls\ColorWidget.resx">
137
      <DependentUpon>ColorWidget.cs</DependentUpon>
138
    </EmbeddedResource>
813 chris 139
    <EmbeddedResource Include="Properties\Resources.resx">
140
      <Generator>ResXFileCodeGenerator</Generator>
141
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
142
    </EmbeddedResource>
811 chris 143
  </ItemGroup>
667 chris 144
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
145
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
146
       Other similar extension points exist, see Microsoft.Common.targets.
147
  <Target Name="BeforeBuild">
148
  </Target>
149
  <Target Name="AfterBuild">
150
  </Target>
151
  -->
152
</Project>