-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGLGUI.Example.csproj
More file actions
58 lines (58 loc) · 2.37 KB
/
GLGUI.Example.csproj
File metadata and controls
58 lines (58 loc) · 2.37 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{1A5AACE1-D7FD-4ECA-871D-95881F7D635B}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>GLGUI.Example</RootNamespace>
<AssemblyName>GLGUI.Example</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\bin</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Reference Include="OpenTK.GLControl, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\bin\OpenTK.GLControl.dll</HintPath>
</Reference>
<Reference Include="System.Core" />
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="OpenTK">
<HintPath>..\bin\OpenTK.dll</HintPath>
</Reference>
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<Compile Include="LineWriter.cs" />
<Compile Include="Program.cs" />
<Compile Include="MainForm.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GLGUI\GLGUI.csproj">
<Project>{D0281455-4FAF-4AF6-ABE4-8F9E7A25828D}</Project>
<Name>GLGUI</Name>
</ProjectReference>
</ItemGroup>
</Project>