tasque r139 - in trunk: . RtmNet
- From: sharm svn gnome org
- To: svn-commits-list gnome org
- Subject: tasque r139 - in trunk: . RtmNet
- Date: Tue, 14 Oct 2008 04:31:58 +0000 (UTC)
Author: sharm
Date: Tue Oct 14 04:31:58 2008
New Revision: 139
URL: http://svn.gnome.org/viewvc/tasque?rev=139&view=rev
Log:
* tasque.csproj:
* tasque.sln:
* RtmNet/RtmNet.csproj: Split RtmNet code into its own project.
* RtmNet/AssemblyInfo.cs: Set CLSCompliant to True again.
Added:
trunk/RtmNet/RtmNet.csproj
Modified:
trunk/ChangeLog
trunk/RtmNet/ (props changed)
trunk/RtmNet/AssemblyInfo.cs
trunk/tasque.csproj
trunk/tasque.sln
Modified: trunk/RtmNet/AssemblyInfo.cs
==============================================================================
--- trunk/RtmNet/AssemblyInfo.cs (original)
+++ trunk/RtmNet/AssemblyInfo.cs Tue Oct 14 04:31:58 2008
@@ -66,5 +66,5 @@
//[assembly: SecurityPermission(SecurityAction.RequestMinimum, Execution = true)]
#endif
-[assembly: CLSCompliantAttribute(false)]
+[assembly: CLSCompliantAttribute(true)]
[assembly: ComVisible(false)]
Added: trunk/RtmNet/RtmNet.csproj
==============================================================================
--- (empty file)
+++ trunk/RtmNet/RtmNet.csproj Tue Oct 14 04:31:58 2008
@@ -0,0 +1,74 @@
+ï<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProjectGuid>{0AA1B96E-03DE-4D26-B4FD-507E988FD9B7}</ProjectGuid>
+ <ProductVersion>9.0.21022</ProductVersion>
+ <SchemaVersion>2.0</SchemaVersion>
+ <OutputType>Library</OutputType>
+ <NoStandardLibraries>false</NoStandardLibraries>
+ <AssemblyName>RtmNet</AssemblyName>
+ <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
+ <FileAlignment>512</FileAlignment>
+ <RootNamespace>RtmNet</RootNamespace>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>false</Optimize>
+ <OutputPath>bin\Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>pdbonly</DebugType>
+ <Optimize>true</Optimize>
+ <OutputPath>bin\Release\</OutputPath>
+ <DefineConstants>TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <ItemGroup>
+ <Reference Include="System" />
+ <Reference Include="System.Web" />
+ <Reference Include="System.Xml" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="ApiKeyRequiredException.cs" />
+ <Compile Include="AssemblyInfo.cs" />
+ <Compile Include="Auth.cs" />
+ <Compile Include="AuthenticationRequiredException.cs" />
+ <Compile Include="Categories.cs" />
+ <Compile Include="Contacts.cs" />
+ <Compile Include="DateGranularity.cs" />
+ <Compile Include="Enums.cs" />
+ <Compile Include="Groups.cs" />
+ <Compile Include="GroupSearchResults.cs" />
+ <Compile Include="List.cs" />
+ <Compile Include="Methods.cs" />
+ <Compile Include="Note.cs" />
+ <Compile Include="Response.cs" />
+ <Compile Include="ResponseXmlException.cs" />
+ <Compile Include="Rtm.cs" />
+ <Compile Include="RtmApiException.cs" />
+ <Compile Include="RtmException.cs" />
+ <Compile Include="RtmWebException.cs" />
+ <Compile Include="SignatureRequiredException.cs" />
+ <Compile Include="Tags.cs" />
+ <Compile Include="Task.cs" />
+ <Compile Include="User.cs" />
+ <Compile Include="Utils.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="example_app.config" />
+ <None Include="Makefile.am" />
+ </ItemGroup>
+ <ItemGroup>
+ <Content Include="License.txt" />
+ </ItemGroup>
+ <Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
+ <ProjectExtensions>
+ <VisualStudio AllowExistingFolder="true" />
+ </ProjectExtensions>
+</Project>
\ No newline at end of file
Modified: trunk/tasque.csproj
==============================================================================
--- trunk/tasque.csproj (original)
+++ trunk/tasque.csproj Tue Oct 14 04:31:58 2008
@@ -55,7 +55,6 @@
<HintPath>..\..\..\..\Program Files\Medsphere\Gtk# SDK\lib\gtk-sharp-2.0\pango\pango-sharp.dll</HintPath>
</Reference>
<Reference Include="System" />
- <Reference Include="System.Web" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
@@ -109,30 +108,6 @@
<EmbeddedResource Include="tasque-48.png" />
</ItemGroup>
<ItemGroup>
- <Compile Include="RtmNet\ApiKeyRequiredException.cs" />
- <Compile Include="RtmNet\AssemblyInfo.cs" />
- <Compile Include="RtmNet\Auth.cs" />
- <Compile Include="RtmNet\AuthenticationRequiredException.cs" />
- <Compile Include="RtmNet\Categories.cs" />
- <Compile Include="RtmNet\Contacts.cs" />
- <Compile Include="RtmNet\DateGranularity.cs" />
- <Compile Include="RtmNet\Enums.cs" />
- <Compile Include="RtmNet\Groups.cs" />
- <Compile Include="RtmNet\GroupSearchResults.cs" />
- <Compile Include="RtmNet\List.cs" />
- <Compile Include="RtmNet\Methods.cs" />
- <Compile Include="RtmNet\Note.cs" />
- <Compile Include="RtmNet\Response.cs" />
- <Compile Include="RtmNet\ResponseXmlException.cs" />
- <Compile Include="RtmNet\Rtm.cs" />
- <Compile Include="RtmNet\RtmApiException.cs" />
- <Compile Include="RtmNet\RtmException.cs" />
- <Compile Include="RtmNet\RtmWebException.cs" />
- <Compile Include="RtmNet\SignatureRequiredException.cs" />
- <Compile Include="RtmNet\Tags.cs" />
- <Compile Include="RtmNet\Task.cs" />
- <Compile Include="RtmNet\User.cs" />
- <Compile Include="RtmNet\Utils.cs" />
<Compile Include="src\AbstractTask.cs" />
<Compile Include="src\AllCategory.cs" />
<Compile Include="src\Application.cs" />
@@ -169,6 +144,12 @@
<Compile Include="src\Utilities.cs" />
</ItemGroup>
<ItemGroup>
+ <ProjectReference Include="RtmNet\RtmNet.csproj">
+ <Project>{0AA1B96E-03DE-4D26-B4FD-507E988FD9B7}</Project>
+ <Name>RtmNet</Name>
+ </ProjectReference>
+ </ItemGroup>
+ <ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
Modified: trunk/tasque.sln
==============================================================================
--- trunk/tasque.sln (original)
+++ trunk/tasque.sln Tue Oct 14 04:31:58 2008
@@ -3,6 +3,8 @@
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "tasque", "tasque.csproj", "{B19B9840-669D-4984-9772-E1F55193A67F}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RtmNet", "RtmNet\RtmNet.csproj", "{0AA1B96E-03DE-4D26-B4FD-507E988FD9B7}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -13,6 +15,10 @@
{B19B9840-669D-4984-9772-E1F55193A67F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B19B9840-669D-4984-9772-E1F55193A67F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B19B9840-669D-4984-9772-E1F55193A67F}.Release|Any CPU.Build.0 = Release|Any CPU
+ {0AA1B96E-03DE-4D26-B4FD-507E988FD9B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {0AA1B96E-03DE-4D26-B4FD-507E988FD9B7}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {0AA1B96E-03DE-4D26-B4FD-507E988FD9B7}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {0AA1B96E-03DE-4D26-B4FD-507E988FD9B7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]