blob: 0f646a5621b5f465cb7259c2b483bba1c63de17b (
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
|
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="3.5" 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>{6D17167C-AC3F-4D40-A652-46627276A9A1}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>metrics</RootNamespace>
<ReleaseVersion>1.3</ReleaseVersion>
<AssemblyName>Metrics</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>.</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>.</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core">
</Reference>
<Reference Include="ICSharpCode.SharpZipLib" />
</ItemGroup>
<ItemGroup>
<Compile Include="MultiUserSample.cs" />
<Compile Include="MetaMetrics.cs" />
<Compile Include="Main.cs" />
<Compile Include="Database.cs" />
<Compile Include="Metric.cs" />
<Compile Include="User.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Core\Banshee.Services\Banshee.Services.csproj">
<Project>{B28354F0-BA87-44E8-989F-B864A3C7C09F}</Project>
<Name>Banshee.Services</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\Hyena\Hyena\Hyena.csproj">
<Project>{95374549-9553-4C1E-9D89-667755F90E12}</Project>
<Name>Hyena</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\Hyena\Mono.Data.Sqlite\Mono.Data.Sqlite.csproj">
<Project>{BB1D1D81-7A74-4183-B7B1-3E78B32D42F1}</Project>
<Name>Mono.Data.Sqlite</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>
|