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
124
125
126
|
<?xml version="1.0" encoding="utf-8"?>
<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>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{6455647D-BA69-4203-962F-D40BF927B87E}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Do.Platform</RootNamespace>
<AssemblyName>Do.Platform</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<StartupObject>
</StartupObject>
</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>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<ItemGroup>
<EmbeddedResource Include="Resources\Do.Platform.addin.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Include="src\Do.Platform\AbstractApplicationService.cs" />
<Compile Include="src\Do.Platform\AbstractSystemService.cs" />
<Compile Include="src\Do.Platform\ActionableNotification.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Common\AbstractLogService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Common\CommonPathsService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Common\DictionaryPreferencesService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Common\EventsOnlyNotificationsService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Common\FileLogService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Common\Tests\DictionaryPreferencesServiceTests.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Default\CoreService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Default\DefaultApplicationService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Default\DefaultPathsService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Default\DefaultSystemService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Default\EnvironmentService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Default\LogService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Default\NetworkService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Default\NotificationsService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Default\PreferencesService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Default\SecurePreferencesService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Default\UniverseFactoryService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Default\WindowingService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Preferences\PreferencesFactory.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Preferences\PreferencesImplementation.cs" />
<Compile Include="src\Do.Platform\Do.Platform.Preferences\Tests\PreferencesImplementationTests.cs" />
<Compile Include="src\Do.Platform\Do.Platform.ServiceStack\IInitializedService.cs" />
<Compile Include="src\Do.Platform\Do.Platform.ServiceStack\IService.cs" />
<Compile Include="src\Do.Platform\ICoreService.cs" />
<Compile Include="src\Do.Platform\IEnvironmentService.cs" />
<Compile Include="src\Do.Platform\ILogService.cs" />
<Compile Include="src\Do.Platform\INetworkService.cs" />
<Compile Include="src\Do.Platform\INotificationsService.cs" />
<Compile Include="src\Do.Platform\IPreferences.cs" />
<Compile Include="src\Do.Platform\IPreferencesService.cs" />
<Compile Include="src\Do.Platform\ISecurePreferencesService.cs" />
<Compile Include="src\Do.Platform\IUniverseFactoryService.cs" />
<Compile Include="src\Do.Platform\IWindowingService.cs" />
<Compile Include="src\Do.Platform\Log.cs" />
<Compile Include="src\Do.Platform\LogBase.cs" />
<Compile Include="src\Do.Platform\LogTSender.cs" />
<Compile Include="src\Do.Platform\NetworkStateChangedEventArgs.cs" />
<Compile Include="src\Do.Platform\Notification.cs" />
<Compile Include="src\Do.Platform\NotificationEventArgs.cs" />
<Compile Include="src\Do.Platform\PathsService.cs" />
<Compile Include="src\Do.Platform\PreferencesChangedEventArgs.cs" />
<Compile Include="src\Do.Platform\SecurePreferencesWrapper.cs" />
<Compile Include="src\Do.Platform\Services.cs" />
<Compile Include="src\Do.Universe\Do.Universe.Common\EmailAction.cs" />
<Compile Include="src\Do.Universe\Do.Universe.Common\OpenAction.cs" />
<Compile Include="src\Do.Universe\Do.Universe.Common\OpenUrlAction.cs" />
<Compile Include="src\Do.Universe\Do.Universe.Common\OpenWithAction.cs" />
<Compile Include="src\Do.Universe\Do.Universe.Common\RevealAction.cs" />
<Compile Include="src\Do.Universe\Do.Universe.Common\RunAction.cs" />
<Compile Include="src\System\Linq\EnumerableExtensions.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Do.Universe\Do.Universe.csproj">
<Project>{7F9464B7-A890-4E54-AE06-F813E8D1E458}</Project>
<Name>Do.Universe</Name>
</ProjectReference>
<ProjectReference Include="..\Mono.Addins\Mono.Addins.csproj">
<Project>{A10F4A9E-AC9C-48DE-BB4D-2997B81C6451}</Project>
<Name>Mono.Addins</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Reference Include="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
<Reference Include="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
<Reference Include="Mono.Posix, Version=2.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL" />
<Reference Include="nunit.framework, Version=2.5.0.9122, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL" />
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
</ItemGroup>
<ItemGroup>
<WCFMetadata Include="Service References\" />
</ItemGroup>
</Project>
|