comparison VBoxFrontend/VBoxFrontend.csproj @ 0:e1ec7bf71313

Initial commit
author Ivo Smits
date Wed, 04 May 2011 00:59:43 +0200
parents
children f1deea9c97a0
comparison
equal deleted inserted replaced
-1:000000000000 0:e1ec7bf71313
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 <PropertyGroup>
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6 <ProductVersion>9.0.30729</ProductVersion>
7 <SchemaVersion>2.0</SchemaVersion>
8 <ProjectGuid>{B1236187-8BCB-4DD7-A4C2-F2C3BBC555A1}</ProjectGuid>
9 <OutputType>Exe</OutputType>
10 <AppDesignerFolder>Properties</AppDesignerFolder>
11 <RootNamespace>ConsoleApplication1</RootNamespace>
12 <AssemblyName>VBoxTest</AssemblyName>
13 <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
14 <FileAlignment>512</FileAlignment>
15 <StartupObject>
16 </StartupObject>
17 </PropertyGroup>
18 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19 <DebugSymbols>true</DebugSymbols>
20 <DebugType>full</DebugType>
21 <Optimize>false</Optimize>
22 <OutputPath>bin\Debug\</OutputPath>
23 <DefineConstants>DEBUG;TRACE</DefineConstants>
24 <ErrorReport>prompt</ErrorReport>
25 <WarningLevel>4</WarningLevel>
26 <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
27 </PropertyGroup>
28 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29 <DebugType>pdbonly</DebugType>
30 <Optimize>true</Optimize>
31 <OutputPath>bin\Release\</OutputPath>
32 <DefineConstants>TRACE</DefineConstants>
33 <ErrorReport>prompt</ErrorReport>
34 <WarningLevel>4</WarningLevel>
35 </PropertyGroup>
36 <ItemGroup>
37 <Reference Include="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
38 <SpecificVersion>False</SpecificVersion>
39 <HintPath>C:\Program Files\Mono-2.8\lib\mono\2.0\Mono.Posix.dll</HintPath>
40 <Private>False</Private>
41 </Reference>
42 <Reference Include="System" />
43 <Reference Include="System.Drawing" />
44 <Reference Include="System.Windows.Forms" />
45 <Reference Include="System.Xml" />
46 </ItemGroup>
47 <ItemGroup>
48 <Compile Include="Display.cs">
49 <SubType>Form</SubType>
50 </Compile>
51 <Compile Include="Display.Designer.cs">
52 <DependentUpon>Display.cs</DependentUpon>
53 </Compile>
54 <Compile Include="Framebuffer.cs" />
55 <Compile Include="Program.cs" />
56 <Compile Include="ProgramLoader.cs" />
57 <Compile Include="Properties\AssemblyInfo.cs" />
58 <Compile Include="Properties\Resources.Designer.cs">
59 <AutoGen>True</AutoGen>
60 <DesignTime>True</DesignTime>
61 <DependentUpon>Resources.resx</DependentUpon>
62 </Compile>
63 <Compile Include="VBoxEventListener.cs" />
64 <Compile Include="VBoxKeyboardHelper.cs" />
65 <Compile Include="VBoxXPCOM.cs" />
66 </ItemGroup>
67 <ItemGroup>
68 <COMReference Include="VirtualBox">
69 <Guid>{46137EEC-703B-4FE5-AFD4-7C9BBBBA0259}</Guid>
70 <VersionMajor>1</VersionMajor>
71 <VersionMinor>3</VersionMinor>
72 <Lcid>0</Lcid>
73 <WrapperTool>tlbimp</WrapperTool>
74 <Isolated>False</Isolated>
75 </COMReference>
76 </ItemGroup>
77 <ItemGroup>
78 <EmbeddedResource Include="Display.resx">
79 <DependentUpon>Display.cs</DependentUpon>
80 </EmbeddedResource>
81 <EmbeddedResource Include="Properties\Resources.resx">
82 <Generator>ResXFileCodeGenerator</Generator>
83 <LastGenOutput>Resources.Designer.cs</LastGenOutput>
84 </EmbeddedResource>
85 </ItemGroup>
86 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
87 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
88 Other similar extension points exist, see Microsoft.Common.targets.
89 <Target Name="BeforeBuild">
90 </Target>
91 <Target Name="AfterBuild">
92 </Target>
93 -->
94 </Project>