blob: aaabb039446e4b4f7bb3913fc9b47c6d309f1e10 (
plain)
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
|
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<ProjectGuid>{3B7DD288-5546-4907-B302-0CD0271D9713}</ProjectGuid>
<OutputType>Library</OutputType>
<UseParentDirectoryAsNamespace>true</UseParentDirectoryAsNamespace>
<AssemblyName>Banshee.Hal</AssemblyName>
<SchemaVersion>2.0</SchemaVersion>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<Optimize>true</Optimize>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ReleaseVersion>1.3</ReleaseVersion>
<RootNamespace>Banshee.Hal</RootNamespace>
<AssemblyOriginatorKeyFile>.</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<OutputPath>..\..\..\bin</OutputPath>
<WarningLevel>4</WarningLevel>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Windows|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<OutputPath>..\..\..\bin</OutputPath>
<WarningLevel>4</WarningLevel>
<Optimize>false</Optimize>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Core\Banshee.Core\Banshee.Core.csproj">
<Project>{2ADB831A-A050-47D0-B6B9-9C19D60233BB}</Project>
<Name>Banshee.Core</Name>
</ProjectReference>
<ProjectReference Include="..\..\Core\Banshee.Services\Banshee.Services.csproj">
<Project>{B28354F0-BA87-44E8-989F-B864A3C7C09F}</Project>
<Name>Banshee.Services</Name>
</ProjectReference>
<ProjectReference Include="..\..\Hyena\Hyena.Data.Sqlite\Hyena.Data.Sqlite.csproj">
<Project>{95374549-9553-4C1E-9D89-667755F90E13}</Project>
<Name>Hyena.Data.Sqlite</Name>
<Private>False</Private>
</ProjectReference>
<ProjectReference Include="..\..\Hyena\Hyena\Hyena.csproj">
<Project>{95374549-9553-4C1E-9D89-667755F90E12}</Project>
<Name>Hyena</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="NDesk.DBus">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\bin\NDesk.DBus.dll</HintPath>
<Package>ndesk-dbus-1.0</Package>
</Reference>
<Reference Include="NDesk.DBus.GLib">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\bin\NDesk.DBus.GLib.dll</HintPath>
<Package>ndesk-dbus-glib-1.0</Package>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Banshee.HalBackend\DkDisk.cs" />
<Compile Include="Banshee.HalBackend\HardwareManager.cs" />
<Compile Include="Hal\Device.cs" />
<Compile Include="Hal\Manager.cs" />
<Compile Include="Hal\Volume.cs" />
<Compile Include="Banshee.HalBackend\Device.cs" />
<Compile Include="Banshee.HalBackend\BlockDevice.cs" />
<Compile Include="Banshee.HalBackend\CdromDevice.cs" />
<Compile Include="Banshee.HalBackend\DiskDevice.cs" />
<Compile Include="Banshee.HalBackend\Volume.cs" />
<Compile Include="Banshee.HalBackend\DiscVolume.cs" />
<Compile Include="Banshee.HalBackend\DeviceMediaCapabilities.cs" />
<Compile Include="Banshee.HalBackend\UsbDevice.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Banshee.Hal.addin.xml">
<LogicalName>Banshee.Hal.addin.xml</LogicalName>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ProjectExtensions>
<MonoDevelop>
<Properties>
<MonoDevelop.Autotools.MakefileInfo IntegrationEnabled="true" RelativeMakefileName="./Makefile.am">
<BuildFilesVar Sync="true" Name="SOURCES" />
<DeployFilesVar />
<ResourcesVar Sync="true" Name="RESOURCES" />
<OthersVar />
<GacRefVar />
<AsmRefVar />
<ProjectRefVar />
</MonoDevelop.Autotools.MakefileInfo>
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>
|