[tasque] [xbuild] Add PackageName and TopBuildDir to each proj



commit 90af2d9962b786fbf39ac63ecf082dfc04276232
Author: Antonius Riha <antoniusriha gmail com>
Date:   Fri Oct 19 01:33:56 2012 +0200

    [xbuild] Add PackageName and TopBuildDir to each proj
    
    This is necessary to build a proj file separatly. I introduced
    this at first, because I thought it would help in building stuff
    from within MD, since MD (when the option "Use xbuild" is
    set) seemingly invokes xbuild on each proj in the sln instead
    of just the sln file.
    
    As it urns out MD does something very wierd. And at this
    point I have no idea, why it wouldn't work. I've run it in
    diagnostics mode from within MD and it doesn't show any
    signs of running the initial target of X.Common.targets.
    Though it loads the file correctly and executes other targets
    in that file. No clue.

 data/data.mdproj                                   |    2 ++
 po/po.mdproj                                       |    4 ++++
 src/Addins/Backends/Dummy/DummyBackend.csproj      |    2 ++
 src/Addins/Backends/Eds/EdsBackend.csproj          |    2 ++
 .../Backends/Hiveminder/HiveminderBackend.csproj   |    2 ++
 src/Addins/Backends/IceCore/IceCoreBackend.csproj  |    2 ++
 src/Addins/Backends/Rtm/RtmBackend.csproj          |    2 ++
 src/Addins/Backends/Sqlite/SqliteBackend.csproj    |    2 ++
 src/Gtk.Tasque/Gtk.Tasque.csproj                   |    2 ++
 src/Libraries/RtmNet/RtmNet.csproj                 |    2 ++
 src/MonoMac.Tasque/MonoMac.Tasque.csproj           |    2 ++
 src/libtasque/libtasque.csproj                     |    2 ++
 src/tasque/tasque.csproj                           |    2 ++
 tests/tests.csproj                                 |    2 ++
 14 files changed, 30 insertions(+), 0 deletions(-)
---
diff --git a/data/data.mdproj b/data/data.mdproj
index 13a17be..661dec8 100644
--- a/data/data.mdproj
+++ b/data/data.mdproj
@@ -9,6 +9,8 @@
     <ProjectGuid>{6F2F4BAA-3C60-464D-B757-9DD18FED0BAA}</ProjectGuid>
     <OutputPath>.</OutputPath>
     <ReleaseVersion>0.1.12</ReleaseVersion>
+    <PackageName>tasque</PackageName>
+    <TopBuildDir>..</TopBuildDir>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Linux|AnyCPU' ">
   </PropertyGroup>
diff --git a/po/po.mdproj b/po/po.mdproj
index d89e6ec..ba858d9 100644
--- a/po/po.mdproj
+++ b/po/po.mdproj
@@ -61,6 +61,10 @@
   <PropertyGroup Condition=" '$(Configuration)' == 'Default' " />
   <!-- The above is only for the MD Gettext addin, which provides a convenient environment for translation -->
   <!-- Below are the xbuild instructions. New translations should be added to the GettextTranslation ItemGroup. -->
+  <PropertyGroup>
+    <PackageName>tasque</PackageName>
+    <TopBuildDir>..</TopBuildDir>
+  </PropertyGroup>
   <ItemGroup>
     <GettextCompile Include="ca.po" />
     <GettextCompile Include="ca valencia po" />
diff --git a/src/Addins/Backends/Dummy/DummyBackend.csproj b/src/Addins/Backends/Dummy/DummyBackend.csproj
index 4fd4c30..ff24693 100644
--- a/src/Addins/Backends/Dummy/DummyBackend.csproj
+++ b/src/Addins/Backends/Dummy/DummyBackend.csproj
@@ -14,6 +14,8 @@
     <WarningLevel>4</WarningLevel>
     <ReleaseVersion>0.1.12</ReleaseVersion>
     <BuildEnabled>$(EnableBackendDummy)</BuildEnabled>
+    <PackageName>tasque</PackageName>
+    <TopBuildDir>..\..\..\..</TopBuildDir>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'GtkDebug|AnyCPU' ">
     <DebugSymbols>True</DebugSymbols>
diff --git a/src/Addins/Backends/Eds/EdsBackend.csproj b/src/Addins/Backends/Eds/EdsBackend.csproj
index fb04b6b..e18ec10 100644
--- a/src/Addins/Backends/Eds/EdsBackend.csproj
+++ b/src/Addins/Backends/Eds/EdsBackend.csproj
@@ -15,6 +15,8 @@
     <ReleaseVersion>0.1.12</ReleaseVersion>
     <EnableBackendEds Condition=" '$(EnableBackendEds)' == '' " >false</EnableBackendEds>
     <BuildEnabled>$(EnableBackendEds)</BuildEnabled>
+    <PackageName>tasque</PackageName>
+    <TopBuildDir>..\..\..\..</TopBuildDir>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'GtkDebug|AnyCPU' ">
     <DebugSymbols>True</DebugSymbols>
diff --git a/src/Addins/Backends/Hiveminder/HiveminderBackend.csproj b/src/Addins/Backends/Hiveminder/HiveminderBackend.csproj
index 73a423f..f656fe7 100644
--- a/src/Addins/Backends/Hiveminder/HiveminderBackend.csproj
+++ b/src/Addins/Backends/Hiveminder/HiveminderBackend.csproj
@@ -15,6 +15,8 @@
     <ReleaseVersion>0.1.12</ReleaseVersion>
     <EnableBackendHiveminder Condition=" '$(EnableBackendHiveminder)' == '' " >false</EnableBackendHiveminder>
     <BuildEnabled>$(EnableBackendHiveminder)</BuildEnabled>
+    <PackageName>tasque</PackageName>
+    <TopBuildDir>..\..\..\..</TopBuildDir>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'GtkDebug|AnyCPU' ">
     <DebugSymbols>True</DebugSymbols>
diff --git a/src/Addins/Backends/IceCore/IceCoreBackend.csproj b/src/Addins/Backends/IceCore/IceCoreBackend.csproj
index 0f549b1..fbce861 100644
--- a/src/Addins/Backends/IceCore/IceCoreBackend.csproj
+++ b/src/Addins/Backends/IceCore/IceCoreBackend.csproj
@@ -15,6 +15,8 @@
     <ReleaseVersion>0.1.12</ReleaseVersion>
     <EnableBackendIceCore Condition=" '$(EnableBackendIceCore)' == '' " >false</EnableBackendIceCore>
     <BuildEnabled>$(EnableBackendIceCore)</BuildEnabled>
+    <PackageName>tasque</PackageName>
+    <TopBuildDir>..\..\..\..</TopBuildDir>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'GtkDebug|AnyCPU' ">
     <DebugSymbols>True</DebugSymbols>
diff --git a/src/Addins/Backends/Rtm/RtmBackend.csproj b/src/Addins/Backends/Rtm/RtmBackend.csproj
index 20887f3..3605ed5 100644
--- a/src/Addins/Backends/Rtm/RtmBackend.csproj
+++ b/src/Addins/Backends/Rtm/RtmBackend.csproj
@@ -14,6 +14,8 @@
     <WarningLevel>4</WarningLevel>
     <ReleaseVersion>0.1.12</ReleaseVersion>
     <BuildEnabled>$(EnableBackendRtm)</BuildEnabled>
+    <PackageName>tasque</PackageName>
+    <TopBuildDir>..\..\..\..</TopBuildDir>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'GtkDebug|AnyCPU' ">
     <DebugSymbols>True</DebugSymbols>
diff --git a/src/Addins/Backends/Sqlite/SqliteBackend.csproj b/src/Addins/Backends/Sqlite/SqliteBackend.csproj
index 7d8deba..6cd5d74 100644
--- a/src/Addins/Backends/Sqlite/SqliteBackend.csproj
+++ b/src/Addins/Backends/Sqlite/SqliteBackend.csproj
@@ -14,6 +14,8 @@
     <WarningLevel>4</WarningLevel>
     <ReleaseVersion>0.1.12</ReleaseVersion>
     <BuildEnabled>$(EnableBackendSqlite)</BuildEnabled>
+    <PackageName>tasque</PackageName>
+    <TopBuildDir>..\..\..\..</TopBuildDir>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'GtkLinuxDebug|AnyCPU' ">
     <DebugSymbols>True</DebugSymbols>
diff --git a/src/Gtk.Tasque/Gtk.Tasque.csproj b/src/Gtk.Tasque/Gtk.Tasque.csproj
index 2c7f832..fd246d8 100644
--- a/src/Gtk.Tasque/Gtk.Tasque.csproj
+++ b/src/Gtk.Tasque/Gtk.Tasque.csproj
@@ -14,6 +14,8 @@
     <WarningLevel>4</WarningLevel>
     <GtkSharp12 Condition=" '$(EnableGtkSharp12)' == '' Or '$(EnableGtkSharp12)' ">GTK_2_12</GtkSharp12>
     <ReleaseVersion>0.1.12</ReleaseVersion>
+    <PackageName>tasque</PackageName>
+    <TopBuildDir>..\..</TopBuildDir>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'LinuxDebug|AnyCPU' ">
     <DebugSymbols>True</DebugSymbols>
diff --git a/src/Libraries/RtmNet/RtmNet.csproj b/src/Libraries/RtmNet/RtmNet.csproj
index 61eeb99..8b174b0 100644
--- a/src/Libraries/RtmNet/RtmNet.csproj
+++ b/src/Libraries/RtmNet/RtmNet.csproj
@@ -14,6 +14,8 @@
     <WarningLevel>4</WarningLevel>
     <ReleaseVersion>0.1.12</ReleaseVersion>
     <BuildEnabled>$(EnableBackendRtm)</BuildEnabled>
+    <PackageName>tasque</PackageName>
+    <TopBuildDir>..\..\..</TopBuildDir>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     <DebugSymbols>True</DebugSymbols>
diff --git a/src/MonoMac.Tasque/MonoMac.Tasque.csproj b/src/MonoMac.Tasque/MonoMac.Tasque.csproj
index ab4e88c..5934380 100644
--- a/src/MonoMac.Tasque/MonoMac.Tasque.csproj
+++ b/src/MonoMac.Tasque/MonoMac.Tasque.csproj
@@ -10,6 +10,8 @@
     <RootNamespace>MonoMac.Tasque</RootNamespace>
     <AssemblyName>MonoMac.Tasque</AssemblyName>
     <ReleaseVersion>0.1.12</ReleaseVersion>
+    <PackageName>tasque</PackageName>
+    <TopBuildDir>..\..</TopBuildDir>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     <DebugSymbols>True</DebugSymbols>
diff --git a/src/libtasque/libtasque.csproj b/src/libtasque/libtasque.csproj
index 5ce71b8..969cb22 100644
--- a/src/libtasque/libtasque.csproj
+++ b/src/libtasque/libtasque.csproj
@@ -13,6 +13,8 @@
     <ErrorReport>prompt</ErrorReport>
     <WarningLevel>4</WarningLevel>
     <ReleaseVersion>0.1.12</ReleaseVersion>
+    <PackageName>tasque</PackageName>
+    <TopBuildDir>..\..</TopBuildDir>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     <DebugSymbols>True</DebugSymbols>
diff --git a/src/tasque/tasque.csproj b/src/tasque/tasque.csproj
index afb1055..38dd266 100644
--- a/src/tasque/tasque.csproj
+++ b/src/tasque/tasque.csproj
@@ -13,6 +13,8 @@
     <ErrorReport>prompt</ErrorReport>
     <WarningLevel>4</WarningLevel>
     <ReleaseVersion>0.1.12</ReleaseVersion>
+    <PackageName>tasque</PackageName>
+    <TopBuildDir>..\..</TopBuildDir>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'GtkLinuxDebug|AnyCPU' ">
     <DebugSymbols>True</DebugSymbols>
diff --git a/tests/tests.csproj b/tests/tests.csproj
index fdaa30a..c5384ad 100644
--- a/tests/tests.csproj
+++ b/tests/tests.csproj
@@ -13,6 +13,8 @@
     <ErrorReport>prompt</ErrorReport>
     <WarningLevel>4</WarningLevel>
     <ReleaseVersion>0.1.12</ReleaseVersion>
+    <PackageName>tasque</PackageName>
+    <TopBuildDir>..</TopBuildDir>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     <DebugSymbols>True</DebugSymbols>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]