-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTomboy-Todo-List.csproj
123 lines (123 loc) · 6.45 KB
/
Tomboy-Todo-List.csproj
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{089F9CE8-A988-43FC-8191-6DE2801F84B0}</ProjectGuid>
<OutputType>Library</OutputType>
<AssemblyName>TaskManager</AssemblyName>
<RootNamespace>Tomboy.TaskManager</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>build</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>false</Optimize>
<OutputPath>build</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="gtk-sharp, Version=2.10.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
<SpecificVersion>False</SpecificVersion>
<Package>gtk-sharp-2.0</Package>
</Reference>
<Reference Include="Mono.Posix" />
<Reference Include="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
<Package>gtk-sharp-2.0</Package>
</Reference>
<Reference Include="System.Xml" />
<Reference Include="nunit.core, Version=2.4.7.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77">
<Package>mono-nunit</Package>
</Reference>
<Reference Include="nunit.core.interfaces, Version=2.4.7.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77">
<Package>mono-nunit</Package>
</Reference>
<Reference Include="nunit.framework, Version=2.4.7.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77">
<Package>mono-nunit</Package>
</Reference>
<Reference Include="nunit.util, Version=2.4.7.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77">
<Package>mono-nunit</Package>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="TaskManagerNote.cs" />
<Compile Include="TaskManagerApplication.cs" />
<Compile Include="TaskList.cs" />
<Compile Include="Task.cs" />
<Compile Include="AttributedTask.cs" />
<Compile Include="OpenTasksNotebook.cs" />
<Compile Include="TaskNoteUtilities.cs" />
<Compile Include="TaskListParser.cs" />
<Compile Include="Tests\FileCreator.cs" />
<Compile Include="Tests\GtkTest.cs" />
<Compile Include="Tests\NotesCreationManager.cs" />
<Compile Include="Tests\TestDeserialization.cs" />
<Compile Include="Tests\TestNoteIntialization.cs" />
<Compile Include="Tests\TestSerialization.cs" />
<Compile Include="TaskManagerGui.cs" />
<Compile Include="OverdueTasksNotebook.cs" />
<Compile Include="Visitors\SetDoneVisitor.cs" />
<Compile Include="Visitors\Visitor.cs" />
<Compile Include="Visitors\GetMinDueDateVisitor.cs" />
<Compile Include="Tests\TestSpecialNotebooks.cs" />
<Compile Include="FixAction.cs" />
<Compile Include="Tags\AttributedTaskTag.cs" />
<Compile Include="Tags\DateTag.cs" />
<Compile Include="Tags\PriorityTag.cs" />
<Compile Include="Tags\TaskListTag.cs" />
<Compile Include="Tags\TaskTag.cs" />
<Compile Include="Visitors\GetAvPriorityVisitor.cs" />
<Compile Include="Priority.cs" />
<Compile Include="Visitors\CheckDoneVisitor.cs" />
<Compile Include="Tags\ColorTag.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<EmbeddedResource Include="TaskManager.addin.xml" />
<EmbeddedResource Include="Tests\SingleTaskListNote.xml" />
<EmbeddedResource Include="Tests\DoubleTaskListNote.xml" />
<EmbeddedResource Include="Tests\NoTaskListNote.xml" />
<EmbeddedResource Include="Tests\AllDoneTaskListNote.xml" />
<EmbeddedResource Include="Icons\todo-icon24.png" />
<EmbeddedResource Include="Icons\duedate-icon22.png" />
<EmbeddedResource Include="Icons\priority-icon22.png" />
<EmbeddedResource Include="Tests\SubTaskNote.xml" />
<EmbeddedResource Include="Tests\SuperTaskNote.xml" />
</ItemGroup>
<ProjectExtensions>
<MonoDevelop>
<Properties InternalTargetFrameworkVersion="3.5">
<Policies>
<StandardHeader Text="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.
 
Authors:
 Jan Rüegg <rggjan@gmail.com>
 Gabriel Walch <walchg@student.ethz.ch>
 Gerd Zellweger <mail@gerdzellweger.com>
" inheritsSet="MITX11License" />
</Policies>
</Properties>
</MonoDevelop>
</ProjectExtensions>
<ItemGroup>
<ProjectReference Include="..\tomboy\Tomboy.csproj">
<Project>{315DBB30-1461-4A41-A23F-A888D84E1EA0}</Project>
<Name>Tomboy</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Tests\" />
<Folder Include="Tags\" />
</ItemGroup>
<ItemGroup>
<None Include="Tests\TestTasklist.cs" />
<None Include="Tests\TestSubSuperTasks.cs" />
</ItemGroup>
</Project>