Subversion Repositories AndroidProjects

Rev

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

Rev Author Line No. Line
1386 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>{CA20EC0B-428C-4F46-8C8E-FCA4CC40AC93}</ProjectGuid>
8
    <OutputType>WinExe</OutputType>
9
    <AppDesignerFolder>Properties</AppDesignerFolder>
10
    <RootNamespace>ShapeEditor</RootNamespace>
11
    <AssemblyName>ShapeEditor</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>
1410 chris 34
  <PropertyGroup>
35
    <ApplicationIcon>bauzoid.ico</ApplicationIcon>
36
  </PropertyGroup>
1386 chris 37
  <ItemGroup>
1453 chris 38
    <Reference Include="OpenTK, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
39
      <SpecificVersion>False</SpecificVersion>
40
      <HintPath>..\..\..\..\OpenTK\1.1\Binaries\OpenTK\Release\OpenTK.dll</HintPath>
41
    </Reference>
42
    <Reference Include="OpenTK.Compatibility, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
43
      <SpecificVersion>False</SpecificVersion>
44
      <HintPath>..\..\..\..\OpenTK\1.1\Binaries\OpenTK\Release\OpenTK.Compatibility.dll</HintPath>
45
    </Reference>
46
    <Reference Include="OpenTK.GLControl, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
47
      <SpecificVersion>False</SpecificVersion>
48
      <HintPath>..\..\..\..\OpenTK\1.1\Binaries\OpenTK\Release\OpenTK.GLControl.dll</HintPath>
49
    </Reference>
1386 chris 50
    <Reference Include="System" />
51
    <Reference Include="System.Core" />
52
    <Reference Include="System.Design" />
53
    <Reference Include="System.Xml.Linq" />
54
    <Reference Include="System.Data.DataSetExtensions" />
55
    <Reference Include="Microsoft.CSharp" />
56
    <Reference Include="System.Data" />
57
    <Reference Include="System.Deployment" />
58
    <Reference Include="System.Drawing" />
59
    <Reference Include="System.Windows.Forms" />
60
    <Reference Include="System.Xml" />
61
  </ItemGroup>
62
  <ItemGroup>
1410 chris 63
    <Compile Include="AboutBox.cs">
64
      <SubType>Form</SubType>
65
    </Compile>
66
    <Compile Include="AboutBox.Designer.cs">
67
      <DependentUpon>AboutBox.cs</DependentUpon>
68
    </Compile>
1386 chris 69
    <Compile Include="file\Document.cs" />
1414 chris 70
    <Compile Include="file\FileUtil.cs" />
1401 chris 71
    <Compile Include="file\shapes\BaseShapeElement.cs" />
1416 chris 72
    <Compile Include="file\shapes\EllipseElement.cs" />
1421 chris 73
    <Compile Include="file\shapes\PolygonElement.cs" />
1401 chris 74
    <Compile Include="file\shapes\RectangleElement.cs" />
1399 chris 75
    <Compile Include="interaction\EllipseMode.cs" />
76
    <Compile Include="interaction\InteractionMode.cs" />
1402 chris 77
    <Compile Include="interaction\PanInteraction.cs" />
1399 chris 78
    <Compile Include="interaction\PolygonMode.cs" />
79
    <Compile Include="interaction\RectangleMode.cs" />
80
    <Compile Include="interaction\SelectMode.cs" />
1386 chris 81
    <Compile Include="MainForm.cs">
82
      <SubType>Form</SubType>
83
    </Compile>
84
    <Compile Include="MainForm.Designer.cs">
85
      <DependentUpon>MainForm.cs</DependentUpon>
86
    </Compile>
87
    <Compile Include="Program.cs" />
88
    <Compile Include="Properties\AssemblyInfo.cs" />
1412 chris 89
    <Compile Include="PropertySorter.cs" />
1410 chris 90
    <EmbeddedResource Include="AboutBox.resx">
91
      <DependentUpon>AboutBox.cs</DependentUpon>
92
    </EmbeddedResource>
1386 chris 93
    <EmbeddedResource Include="MainForm.resx">
94
      <DependentUpon>MainForm.cs</DependentUpon>
95
    </EmbeddedResource>
96
    <EmbeddedResource Include="Properties\Resources.resx">
97
      <Generator>ResXFileCodeGenerator</Generator>
98
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
99
      <SubType>Designer</SubType>
100
    </EmbeddedResource>
101
    <Compile Include="Properties\Resources.Designer.cs">
102
      <AutoGen>True</AutoGen>
103
      <DependentUpon>Resources.resx</DependentUpon>
104
    </Compile>
1410 chris 105
    <Content Include="bauzoid.ico" />
1386 chris 106
    <Content Include="data\shaders\spriteshader.frag">
107
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
108
    </Content>
109
    <Content Include="data\shaders\spriteshader.vert">
110
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
111
    </Content>
112
    <Content Include="data\shaders\offscreen.frag">
113
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
114
    </Content>
115
    <Content Include="data\shaders\offscreen.vert">
116
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
117
    </Content>
118
    <Content Include="data\bauzoid\shaders\primitive.frag">
119
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
120
    </Content>
121
    <Content Include="data\bauzoid\shaders\primitive.vert">
122
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
123
    </Content>
124
    <Content Include="data\bauzoid\shaders\screenfader.frag">
125
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
126
    </Content>
127
    <Content Include="data\bauzoid\shaders\screenfader.vert">
128
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
129
    </Content>
130
    <Content Include="data\bauzoid\shaders\spriteshader.frag">
131
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
132
    </Content>
133
    <Content Include="data\bauzoid\shaders\spriteshader.vert">
134
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
135
    </Content>
136
    <None Include="Properties\Settings.settings">
137
      <Generator>SettingsSingleFileGenerator</Generator>
138
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
139
    </None>
140
    <Compile Include="Properties\Settings.Designer.cs">
141
      <AutoGen>True</AutoGen>
142
      <DependentUpon>Settings.settings</DependentUpon>
143
      <DesignTimeSharedInput>True</DesignTimeSharedInput>
144
    </Compile>
145
  </ItemGroup>
146
  <ItemGroup>
147
    <None Include="App.config" />
148
  </ItemGroup>
149
  <ItemGroup>
150
    <ProjectReference Include="..\BauzoidNET\BauzoidNET.csproj">
151
      <Project>{17a932b1-856b-4ccf-975e-de9ae5f781a0}</Project>
152
      <Name>BauzoidNET</Name>
153
    </ProjectReference>
154
  </ItemGroup>
155
  <ItemGroup>
1402 chris 156
    <Content Include="data\textures\handle.png">
157
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
158
    </Content>
1386 chris 159
    <Content Include="data\textures\test.png">
160
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
161
    </Content>
162
  </ItemGroup>
1401 chris 163
  <ItemGroup />
1386 chris 164
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
165
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
166
       Other similar extension points exist, see Microsoft.Common.targets.
167
  <Target Name="BeforeBuild">
168
  </Target>
169
  <Target Name="AfterBuild">
170
  </Target>
171
  -->
172
</Project>