Rev 1453 | 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> |
||
| 1489 | chris | 104 | <DesignTime>True</DesignTime> |
| 1386 | chris | 105 | </Compile> |
| 1410 | chris | 106 | <Content Include="bauzoid.ico" /> |
| 1489 | chris | 107 | <Content Include="data\bauzoid\fonts\ingame.png" /> |
| 108 | <None Include="data\bauzoid\fonts\ingame.bzf" /> |
||
| 1386 | chris | 109 | <None Include="Properties\Settings.settings"> |
| 110 | <Generator>SettingsSingleFileGenerator</Generator> |
||
| 111 | <LastGenOutput>Settings.Designer.cs</LastGenOutput> |
||
| 112 | </None> |
||
| 113 | <Compile Include="Properties\Settings.Designer.cs"> |
||
| 114 | <AutoGen>True</AutoGen> |
||
| 115 | <DependentUpon>Settings.settings</DependentUpon> |
||
| 116 | <DesignTimeSharedInput>True</DesignTimeSharedInput> |
||
| 117 | </Compile> |
||
| 118 | </ItemGroup> |
||
| 119 | <ItemGroup> |
||
| 120 | <None Include="App.config" /> |
||
| 121 | </ItemGroup> |
||
| 122 | <ItemGroup> |
||
| 123 | <ProjectReference Include="..\BauzoidNET\BauzoidNET.csproj"> |
||
| 124 | <Project>{17a932b1-856b-4ccf-975e-de9ae5f781a0}</Project> |
||
| 125 | <Name>BauzoidNET</Name> |
||
| 126 | </ProjectReference> |
||
| 127 | </ItemGroup> |
||
| 128 | <ItemGroup> |
||
| 1489 | chris | 129 | <None Include="data\bauzoid\shaders\primitive_frag.txt" /> |
| 130 | <None Include="data\bauzoid\shaders\primitive_vert.txt" /> |
||
| 131 | <None Include="data\bauzoid\shaders\screenfader_frag.txt" /> |
||
| 132 | <None Include="data\bauzoid\shaders\screenfader_vert.txt" /> |
||
| 133 | <None Include="data\bauzoid\shaders\spriteshader_frag.txt" /> |
||
| 134 | <None Include="data\bauzoid\shaders\spriteshader_vert.txt" /> |
||
| 135 | <Content Include="data\textures\handle.png" /> |
||
| 136 | <Content Include="data\textures\test.png" /> |
||
| 1386 | chris | 137 | </ItemGroup> |
| 1489 | chris | 138 | <ItemGroup> |
| 139 | <Folder Include="data\shaders\" /> |
||
| 140 | </ItemGroup> |
||
| 1386 | chris | 141 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
| 142 | <!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
||
| 143 | Other similar extension points exist, see Microsoft.Common.targets. |
||
| 144 | <Target Name="BeforeBuild"> |
||
| 145 | </Target> |
||
| 146 | <Target Name="AfterBuild"> |
||
| 147 | </Target> |
||
| 148 | --> |
||
| 149 | </Project> |