-
Notifications
You must be signed in to change notification settings - Fork 1
/
DRI.net.csproj
53 lines (53 loc) · 2.17 KB
/
DRI.net.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
<?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)' == '' ">AnyCPU</Platform>
<ProjectGuid>{0189EAEF-DCD4-42F8-A83A-2DEA82926671}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>DRI</RootNamespace>
<AssemblyName>DRI.net</AssemblyName>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<Description>Linux Direct Rendering Infrastructure Bindings</Description>
<OutputPath>$(SolutionDir)build\$(Configuration)</OutputPath>
<IntermediateOutputPath>$(SolutionDir)build\obj\$(Configuration)</IntermediateOutputPath>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Compile Include="GBM\BufferObject.cs" />
<Compile Include="GBM\Device.cs" />
<Compile Include="GBM\Surface.cs" />
<Compile Include="Libc.cs" />
<Compile Include="EGL\Context.cs" />
<Compile Include="EGL\EGL.cs" />
<Compile Include="EGL\Surface.cs" />
<Compile Include="Poll.cs" />
<Compile Include="DRM\Connector.cs" />
<Compile Include="DRM\Crtc.cs" />
<Compile Include="DRM\Encoder.cs" />
<Compile Include="DRM\Plane.cs" />
<Compile Include="DRM\PlaneResources.cs" />
<Compile Include="DRM\Resources.cs" />
<Compile Include="DRM\Native.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
</ItemGroup>
<ItemGroup>
<Folder Include="EGL\" />
</ItemGroup>
</Project>