-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathOpenTKGUI.csproj
107 lines (107 loc) · 4.42 KB
/
OpenTKGUI.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{D78F7DC8-1193-483A-8530-C373A3D99422}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>OpenTKGUI</RootNamespace>
<AssemblyName>OpenTKGUI</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<StartupObject>
</StartupObject>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="OpenTK, Version=1.0.0.201, Culture=neutral, PublicKeyToken=bad199fe84eb3df4">
<SpecificVersion>False</SpecificVersion>
<HintPath>bin\Debug\OpenTK.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Color.cs" />
<Compile Include="Containers\AlignContainer.cs" />
<Compile Include="Containers\VariableContainer.cs" />
<Compile Include="Control.cs" />
<Compile Include="Controls\Pane.cs" />
<Compile Include="Font.cs" />
<Compile Include="GUIContext.cs" />
<Compile Include="GUIRenderContext.cs" />
<Compile Include="HostWindow.cs" />
<Compile Include="MessageBox.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Rectangle.cs" />
<Compile Include="Point.cs" />
<Compile Include="Res.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Res.resx</DependentUpon>
</Compile>
<Compile Include="Skin.cs" />
<Compile Include="Surface.cs" />
<Compile Include="EventHandelers.cs" />
<Compile Include="Controls\Button.cs" />
<Compile Include="Controls\Checkbox.cs" />
<Compile Include="Controls\Label.cs" />
<Compile Include="Controls\Form.cs" />
<Compile Include="Controls\Progressbar.cs" />
<Compile Include="Controls\Popup.cs" />
<Compile Include="Controls\Menu.cs" />
<Compile Include="Containers\BorderContainer.cs" />
<Compile Include="Containers\ManualContainer.cs" />
<Compile Include="Containers\MarginContainer.cs" />
<Compile Include="Containers\LayerContainer.cs" />
<Compile Include="Controls\Scrollbar.cs" />
<Compile Include="Controls\Blank.cs" />
<Compile Include="Containers\FlowContainer.cs" />
<Compile Include="Containers\SunkenContainer.cs" />
<Compile Include="Containers\SplitContainer.cs" />
<Compile Include="Containers\ScrollContainer.cs" />
<Compile Include="Containers\WindowContainer.cs" />
<Compile Include="Controls\Textbox.cs" />
<Compile Include="Surfaces\AlignSurface.cs" />
<Compile Include="Surfaces\TextureSurface.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Res.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Res.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="Resources\SkinDefault.png" />
</ItemGroup>
</Project>