Subversion Repositories AndroidProjects

Rev

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