summaryrefslogtreecommitdiff
path: root/extras
diff options
context:
space:
mode:
authorGabriel Burt <gabriel.burt@gmail.com>2010-05-18 16:20:50 -0700
committerGabriel Burt <gabriel.burt@gmail.com>2010-05-18 16:20:50 -0700
commit0e6de945dd9695bb7bdfef4ee0f92dfa256aec6e (patch)
treeca97491a7f9c2f58a52e6551a9dd404a5d08cbd2 /extras
parent47bb27d6961db0c17af2dbf1913bd9781fd7851c (diff)
[extras/metrics] Add .csproj and update db location
Diffstat (limited to 'extras')
-rw-r--r--extras/metrics/Main.cs2
-rw-r--r--extras/metrics/Metrics.csproj51
2 files changed, 52 insertions, 1 deletions
diff --git a/extras/metrics/Main.cs b/extras/metrics/Main.cs
index 3734f5d85..0d4d11850 100644
--- a/extras/metrics/Main.cs
+++ b/extras/metrics/Main.cs
@@ -33,7 +33,7 @@ namespace metrics
{
public class MainEntry
{
- const string db_path = "metrics.db";
+ const string db_path = "data/metrics.db";
public static void Main (string [] args)
{
diff --git a/extras/metrics/Metrics.csproj b/extras/metrics/Metrics.csproj
new file mode 100644
index 000000000..836241079
--- /dev/null
+++ b/extras/metrics/Metrics.csproj
@@ -0,0 +1,51 @@
+<?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" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="MultiUserSample.cs" />
+ <Compile Include="MetaMetrics.cs" />
+ <Compile Include="Main.cs" />
+ <Compile Include="Database.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\..\src\Libraries\Hyena\Hyena.csproj">
+ <Project>{95374549-9553-4C1E-9D89-667755F90E12}</Project>
+ <Name>Hyena</Name>
+ </ProjectReference>
+ <ProjectReference Include="..\..\src\Libraries\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> \ No newline at end of file