[tasque/xbuild: 2/4] [MSBuild] Add build project to manage MSBuild build



commit 27731e70982e0644ee388c35e123972017296c8d
Author: Antonius Riha <antoniusriha gmail com>
Date:   Wed Aug 29 14:15:56 2012 +0200

    [MSBuild] Add build project to manage MSBuild build

 .gitignore            |    6 ++++
 build/AssemblyInfo.cs |   52 +++++++++++++++++++++++++++++++++
 build/build.csproj    |   76 +++++++++++++++++++++++++++++++++++++++++++++++++
 tasque.sln            |   14 +++++++++
 4 files changed, 148 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 2ef57d2..5cc0ce8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -95,3 +95,9 @@ Makefile.in
 # /src/Libraries/RtmNet
 /src/Libraries/RtmNet/*.dll
 /src/Libraries/RtmNet/*.mdb
+
+# /build/
+/build/*.dll
+/build/*.mdb
+/build/obj/
+/build/bin/
diff --git a/build/AssemblyInfo.cs b/build/AssemblyInfo.cs
new file mode 100644
index 0000000..94e7edb
--- /dev/null
+++ b/build/AssemblyInfo.cs
@@ -0,0 +1,52 @@
+// 
+// AssemblyInfo.cs
+//  
+// Author:
+//       Antonius Riha <antoniusriha gmail com>
+// 
+// Copyright (c) 2012 Antonius Riha
+// 
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights
+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the Software is
+// furnished to do so, subject to the following conditions:
+// 
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+// THE SOFTWARE.
+using System.Reflection;
+using System.Runtime.CompilerServices;
+
+// Information about this assembly is defined by the following attributes. 
+// Change them to the values specific to your project.
+
+[assembly: AssemblyTitle("build")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("")]
+[assembly: AssemblyCopyright("Antonius Riha")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
+// The form "{Major}.{Minor}.*" will automatically update the build and revision,
+// and "{Major}.{Minor}.{Build}.*" will update just the revision.
+
+[assembly: AssemblyVersion("1.0.*")]
+
+// The following attributes are used to specify the signing key for the assembly, 
+// if desired. See the Mono documentation for more information about signing.
+
+//[assembly: AssemblyDelaySign(false)]
+//[assembly: AssemblyKeyFile("")]
+
diff --git a/build/build.csproj b/build/build.csproj
new file mode 100644
index 0000000..09b6399
--- /dev/null
+++ b/build/build.csproj
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <ProductVersion>10.0.0</ProductVersion>
+    <SchemaVersion>2.0</SchemaVersion>
+    <ProjectGuid>{BCC1964F-A6E3-4912-B120-6DA22C0EB294}</ProjectGuid>
+    <OutputType>Library</OutputType>
+    <OutputPath>.\</OutputPath>
+    <RootNamespace>Tasque.Build</RootNamespace>
+    <AssemblyName>build</AssemblyName>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <Optimize>false</Optimize>
+    <DefineConstants>DEBUG;TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+    <ConsolePause>false</ConsolePause>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <DebugType>none</DebugType>
+    <Optimize>true</Optimize>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+    <ConsolePause>false</ConsolePause>
+    <DefineConstants>TRACE</DefineConstants>
+  </PropertyGroup>
+  <ItemGroup>
+    <Reference Include="System" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="AssemblyInfo.cs" />
+  </ItemGroup>
+  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
+  <ProjectExtensions>
+    <MonoDevelop>
+      <Properties>
+        <Deployment.LinuxDeployData generatePcFile="false" />
+      </Properties>
+    </MonoDevelop>
+  </ProjectExtensions>
+  <ItemGroup>
+    <None Include="build.csproj" />
+    <None Include="..\src\Gtk.Tasque\Gtk.Tasque.csproj">
+      <Link>Gtk.Tasque.csproj</Link>
+    </None>
+    <None Include="..\src\libtasque\libtasque.csproj">
+      <Link>libtasque.csproj</Link>
+    </None>
+    <None Include="..\src\MonoMac.Tasque\MonoMac.Tasque.csproj">
+      <Link>MonoMac.Tasque.csproj</Link>
+    </None>
+    <None Include="..\src\tasque\tasque.csproj">
+      <Link>tasque.csproj</Link>
+    </None>
+    <None Include="..\src\Libraries\RtmNet\RtmNet.csproj">
+      <Link>RtmNet.csproj</Link>
+    </None>
+    <None Include="..\src\Addins\Backends\Dummy\DummyBackend.csproj">
+      <Link>Addins\Backends\DummyBackend.csproj</Link>
+    </None>
+    <None Include="..\src\Addins\Backends\Rtm\RtmBackend.csproj">
+      <Link>Addins\Backends\RtmBackend.csproj</Link>
+    </None>
+    <None Include="..\src\Addins\Backends\Sqlite\SqliteBackend.csproj">
+      <Link>Addins\Backends\SqliteBackend.csproj</Link>
+    </None>
+  </ItemGroup>
+  <ItemGroup>
+    <Folder Include="Addins\" />
+    <Folder Include="Addins\Backends\" />
+  </ItemGroup>
+</Project>
\ No newline at end of file
diff --git a/tasque.sln b/tasque.sln
index cbed850..480802e 100644
--- a/tasque.sln
+++ b/tasque.sln
@@ -23,6 +23,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "tasque", "src\tasque\tasque
 EndProject
 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MonoMac.Tasque", "src\MonoMac.Tasque\MonoMac.Tasque.csproj", "{67188C62-9332-4402-8702-E8BC1CCA8D2F}"
 EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "build", "build\build.csproj", "{BCC1964F-A6E3-4912-B120-6DA22C0EB294}"
+EndProject
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
 		GtkLinuxDebug|Any CPU = GtkLinuxDebug|Any CPU
@@ -105,6 +107,18 @@ Global
 		{B19B9840-669D-4984-9772-E1F55193A67F}.GtkWinRelease|Any CPU.Build.0 = WinRelease|Any CPU
 		{B19B9840-669D-4984-9772-E1F55193A67F}.MonoMacDebug|Any CPU.ActiveCfg = LinuxDebug|Any CPU
 		{B19B9840-669D-4984-9772-E1F55193A67F}.MonoMacRelease|Any CPU.ActiveCfg = LinuxRelease|Any CPU
+		{BCC1964F-A6E3-4912-B120-6DA22C0EB294}.GtkLinuxDebug|Any CPU.ActiveCfg = Debug|Any CPU
+		{BCC1964F-A6E3-4912-B120-6DA22C0EB294}.GtkLinuxDebug|Any CPU.Build.0 = Debug|Any CPU
+		{BCC1964F-A6E3-4912-B120-6DA22C0EB294}.GtkLinuxRelease|Any CPU.ActiveCfg = Release|Any CPU
+		{BCC1964F-A6E3-4912-B120-6DA22C0EB294}.GtkLinuxRelease|Any CPU.Build.0 = Release|Any CPU
+		{BCC1964F-A6E3-4912-B120-6DA22C0EB294}.GtkWinDebug|Any CPU.ActiveCfg = Debug|Any CPU
+		{BCC1964F-A6E3-4912-B120-6DA22C0EB294}.GtkWinDebug|Any CPU.Build.0 = Debug|Any CPU
+		{BCC1964F-A6E3-4912-B120-6DA22C0EB294}.GtkWinRelease|Any CPU.ActiveCfg = Release|Any CPU
+		{BCC1964F-A6E3-4912-B120-6DA22C0EB294}.GtkWinRelease|Any CPU.Build.0 = Release|Any CPU
+		{BCC1964F-A6E3-4912-B120-6DA22C0EB294}.MonoMacDebug|Any CPU.ActiveCfg = Debug|Any CPU
+		{BCC1964F-A6E3-4912-B120-6DA22C0EB294}.MonoMacDebug|Any CPU.Build.0 = Debug|Any CPU
+		{BCC1964F-A6E3-4912-B120-6DA22C0EB294}.MonoMacRelease|Any CPU.ActiveCfg = Release|Any CPU
+		{BCC1964F-A6E3-4912-B120-6DA22C0EB294}.MonoMacRelease|Any CPU.Build.0 = Release|Any CPU
 		{CC8935CB-342C-4FDA-BAF1-24FA3EB53490}.GtkLinuxDebug|Any CPU.ActiveCfg = GtkDebug|Any CPU
 		{CC8935CB-342C-4FDA-BAF1-24FA3EB53490}.GtkLinuxDebug|Any CPU.Build.0 = GtkDebug|Any CPU
 		{CC8935CB-342C-4FDA-BAF1-24FA3EB53490}.GtkLinuxRelease|Any CPU.ActiveCfg = GtkRelease|Any CPU



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