master
  1<?xml version="1.0" encoding="utf-8"?>
  2<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3  <PropertyGroup>
  4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6    <ProductVersion>9.0.21022</ProductVersion>
  7    <SchemaVersion>2.0</SchemaVersion>
  8    <ProjectGuid>{2DB82691-BF15-4538-8C5E-6BF8F4F875A9}</ProjectGuid>
  9    <OutputType>WinExe</OutputType>
 10    <AppDesignerFolder>Properties</AppDesignerFolder>
 11    <RootNamespace>Notepad</RootNamespace>
 12    <AssemblyName>Notepad</AssemblyName>
 13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
 14    <FileAlignment>512</FileAlignment>
 15  </PropertyGroup>
 16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
 17    <DebugSymbols>true</DebugSymbols>
 18    <DebugType>full</DebugType>
 19    <Optimize>false</Optimize>
 20    <OutputPath>bin\Debug\</OutputPath>
 21    <DefineConstants>DEBUG;TRACE</DefineConstants>
 22    <ErrorReport>prompt</ErrorReport>
 23    <WarningLevel>4</WarningLevel>
 24  </PropertyGroup>
 25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
 26    <DebugType>pdbonly</DebugType>
 27    <Optimize>true</Optimize>
 28    <OutputPath>bin\Release\</OutputPath>
 29    <DefineConstants>TRACE</DefineConstants>
 30    <ErrorReport>prompt</ErrorReport>
 31    <WarningLevel>4</WarningLevel>
 32  </PropertyGroup>
 33  <ItemGroup>
 34    <Reference Include="Castle.Core, Version=1.0.3.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
 35      <SpecificVersion>False</SpecificVersion>
 36      <HintPath>..\..\build\lib\app\castle\Castle.Core.dll</HintPath>
 37    </Reference>
 38    <Reference Include="Castle.DynamicProxy2, Version=2.0.3.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
 39      <SpecificVersion>False</SpecificVersion>
 40      <HintPath>..\..\build\lib\app\castle\Castle.DynamicProxy2.dll</HintPath>
 41    </Reference>
 42    <Reference Include="Castle.MicroKernel, Version=1.0.3.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
 43      <SpecificVersion>False</SpecificVersion>
 44      <HintPath>..\..\build\lib\app\castle\Castle.MicroKernel.dll</HintPath>
 45    </Reference>
 46    <Reference Include="Castle.Windsor, Version=1.0.3.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
 47      <SpecificVersion>False</SpecificVersion>
 48      <HintPath>..\..\build\lib\app\castle\Castle.Windsor.dll</HintPath>
 49    </Reference>
 50    <Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821, processorArchitecture=MSIL">
 51      <SpecificVersion>False</SpecificVersion>
 52      <HintPath>..\..\build\lib\app\log4net\log4net.dll</HintPath>
 53    </Reference>
 54    <Reference Include="MbUnit.Framework, Version=2.4.2.130, Culture=neutral, PublicKeyToken=5e72ecd30bc408d5">
 55      <SpecificVersion>False</SpecificVersion>
 56      <HintPath>..\..\build\tools\mbunit\MbUnit.Framework.dll</HintPath>
 57    </Reference>
 58    <Reference Include="Rhino.Mocks, Version=3.5.0.1, Culture=neutral, PublicKeyToken=0b3305902db7183f, processorArchitecture=MSIL">
 59      <SpecificVersion>False</SpecificVersion>
 60      <HintPath>..\..\build\lib\test\rhino.mocks\Rhino.Mocks.dll</HintPath>
 61    </Reference>
 62    <Reference Include="System" />
 63    <Reference Include="System.Core">
 64      <RequiredTargetFramework>3.5</RequiredTargetFramework>
 65    </Reference>
 66    <Reference Include="System.Xml.Linq">
 67      <RequiredTargetFramework>3.5</RequiredTargetFramework>
 68    </Reference>
 69    <Reference Include="System.Data.DataSetExtensions">
 70      <RequiredTargetFramework>3.5</RequiredTargetFramework>
 71    </Reference>
 72    <Reference Include="System.Data" />
 73    <Reference Include="System.Deployment" />
 74    <Reference Include="System.Drawing" />
 75    <Reference Include="System.Windows.Forms" />
 76    <Reference Include="System.Xml" />
 77  </ItemGroup>
 78  <ItemGroup>
 79    <Compile Include="DataAccess\Repositories\DefaultRepository.cs" />
 80    <Compile Include="DataAccess\Repositories\DefaultRepositorySpecs.cs" />
 81    <Compile Include="Domain\FileSystem\AbsoluteFilePath.cs" />
 82    <Compile Include="Domain\FileSystem\IFilePath.cs" />
 83    <Compile Include="Infrastructure\Container\Windsor\IComponentExclusionSpecification.cs" />
 84    <Compile Include="Infrastructure\Extensions\LoggingExtensions.cs" />
 85    <Compile Include="Presentation\Presenters\Commands\IRunPresenterCommand.cs" />
 86    <Compile Include="Presentation\Presenters\Commands\RunPresenterCommandSpecs.cs" />
 87    <Compile Include="Presentation\Model\Menu\File\Commands\SaveCommandSpecs.cs" />
 88    <Compile Include="Presentation\Model\Menu\File\ExitMenuItem.cs" />
 89    <Compile Include="Presentation\Model\Menu\File\ExitMenuItemSpecs.cs" />
 90    <Compile Include="Presentation\Model\Menu\File\FileMenu.cs" />
 91    <Compile Include="Presentation\Model\Menu\File\FileMenuSpecs.cs" />
 92    <Compile Include="Presentation\Model\Menu\File\NewMenuItem.cs" />
 93    <Compile Include="Presentation\Model\Menu\File\NewMenuItemSpecs.cs" />
 94    <Compile Include="Presentation\Model\Menu\File\SaveAsMenuItem.cs" />
 95    <Compile Include="Presentation\Model\Menu\File\SaveAsMenuItemSpecs.cs" />
 96    <Compile Include="Presentation\Model\Menu\File\SaveMenuItem.cs" />
 97    <Compile Include="Presentation\Model\Menu\File\SaveMenuItemSpecs.cs" />
 98    <Compile Include="Presentation\Model\Menu\Help\AboutMenuItem.cs" />
 99    <Compile Include="Presentation\Model\Menu\Help\AboutMenuItemSpecs.cs" />
100    <Compile Include="Presentation\Model\Menu\Help\HelpMenu.cs" />
101    <Compile Include="Presentation\Model\Menu\Help\HelpMenuSpecs.cs" />
102    <Compile Include="Presentation\Model\Menu\IMenuItem.cs" />
103    <Compile Include="Presentation\Model\Menu\IMenuItemComparer.cs" />
104    <Compile Include="Presentation\Model\Menu\ISubMenuItemComparer.cs" />
105    <Compile Include="Presentation\Model\Menu\MenuNames.cs" />
106    <Compile Include="Infrastructure\Container\Windsor\IWindsorContainerFactory.cs" />
107    <Compile Include="Infrastructure\Core\ISpecification.cs" />
108    <Compile Include="Infrastructure\Extensions\ConversionExtensions.cs" />
109    <Compile Include="Infrastructure\Extensions\EnumerableExtensions.cs" />
110    <Compile Include="Infrastructure\Extensions\SpecificationExtensions.cs" />
111    <Compile Include="Infrastructure\Logging\ILogFactory.cs" />
112    <Compile Include="Infrastructure\Logging\ILogger.cs" />
113    <Compile Include="Infrastructure\Logging\Log.cs" />
114    <Compile Include="Infrastructure\Logging\Log4NetLogging\Log4NetLogger.cs" />
115    <Compile Include="Infrastructure\Logging\Log4NetLogging\Log4NetLogFactory.cs" />
116    <Compile Include="Infrastructure\Logging\LogSpecs.cs" />
117    <Compile Include="Presentation\Model\Menu\File\Commands\ISaveCommand.cs" />
118    <Compile Include="Presentation\Core\IPresenterRegistry.cs" />
119    <Compile Include="Presentation\Presenters\Menu\File\ISaveAsPresenter.cs" />
120    <Compile Include="Presentation\Presenters\Menu\File\SaveAsPresenterSpecs.cs" />
121    <Compile Include="Presentation\Presenters\Menu\Help\AboutApplicationPresenterSpecs.cs" />
122    <Compile Include="Presentation\Presenters\Menu\Help\IAboutApplicationPresenter.cs" />
123    <Compile Include="Presentation\Views\Menu\Help\AboutApplicationView.cs">
124      <SubType>Form</SubType>
125    </Compile>
126    <Compile Include="Presentation\Views\Menu\Help\AboutApplicationView.Designer.cs">
127      <DependentUpon>AboutApplicationView.cs</DependentUpon>
128    </Compile>
129    <Compile Include="Presentation\Views\Menu\Help\IAboutApplicationView.cs" />
130    <Compile Include="Presentation\Views\Menu\Mappers\IMenuItemToToolStripMenuItemMapper.cs" />
131    <Compile Include="Presentation\Views\Menu\Mappers\ISubMenuToToolStripMenuItemMapper.cs" />
132    <Compile Include="Presentation\Views\Menu\File\ISaveAsView.cs" />
133    <Compile Include="Presentation\Views\Shell\WindowShell.cs">
134      <SubType>Form</SubType>
135    </Compile>
136    <Compile Include="Presentation\Views\Shell\WindowShell.Designer.cs">
137      <DependentUpon>WindowShell.cs</DependentUpon>
138    </Compile>
139    <Compile Include="Presentation\Views\Menu\Mappers\MenuItemToToolStripMenuItemMapperSpecs.cs" />
140    <Compile Include="Presentation\Views\Menu\Mappers\SubMenuToToolStripMenuItemMapper.cs" />
141    <Compile Include="Presentation\Views\Menu\Mappers\SubMenuToToolStripMenuItemMapperSpecs.cs" />
142    <Compile Include="Presentation\Context\NotepadApplicationContextSpecs.cs" />
143    <Compile Include="Presentation\Context\NotepadApplicationContext.cs" />
144    <Compile Include="Start.cs" />
145    <Compile Include="Presentation\Model\Menu\ISubMenu.cs" />
146    <Compile Include="Domain\Repositories\IRepository.cs" />
147    <Compile Include="Infrastructure\Container\DependencyResolutionException.cs" />
148    <Compile Include="Infrastructure\Container\Resolve.cs" />
149    <Compile Include="Infrastructure\Container\ResolveSpecs.cs" />
150    <Compile Include="Infrastructure\Container\Windsor\WindsorDependencyRegistry.cs" />
151    <Compile Include="Infrastructure\Container\Windsor\WindsorDependencyResolverSpecs.cs" />
152    <Compile Include="Infrastructure\Core\ICommand.cs" />
153    <Compile Include="Infrastructure\Core\IMapper.cs" />
154    <Compile Include="Infrastructure\Extensions\StringExtensions.cs" />
155    <Compile Include="Infrastructure\System\IApplicationEnvironment.cs" />
156    <Compile Include="Presentation\Model\Menu\File\Commands\ExitCommandSpecs.cs" />
157    <Compile Include="Presentation\Model\Menu\File\Commands\IExitCommand.cs" />
158    <Compile Include="Presentation\Core\ApplicationControllerSpecs.cs" />
159    <Compile Include="Presentation\Core\ApplicationController.cs" />
160    <Compile Include="Presentation\Core\IApplicationController.cs" />
161    <Compile Include="Presentation\Core\IPresenter.cs" />
162    <Compile Include="Infrastructure\Container\IDependencyRegistry.cs" />
163    <Compile Include="Presentation\Presenters\Menu\MainMenuPresenterSpecs.cs" />
164    <Compile Include="Presentation\Presenters\Shell\MainShellPresenterSpecs.cs" />
165    <Compile Include="Presentation\Presenters\Menu\IMainMenuPresenter.cs" />
166    <Compile Include="Presentation\Presenters\Shell\IMainShellPresenter.cs" />
167    <Compile Include="Presentation\Presenters\Shell\MainShellPresenter.cs" />
168    <Compile Include="Presentation\Views\Menu\IMainMenuView.cs" />
169    <Compile Include="Presentation\Views\Menu\MainMenuViewSpecs.cs" />
170    <Compile Include="Program.cs" />
171    <EmbeddedResource Include="Presentation\Views\Menu\Help\AboutApplicationView.resx">
172      <DependentUpon>AboutApplicationView.cs</DependentUpon>
173      <SubType>Designer</SubType>
174    </EmbeddedResource>
175    <EmbeddedResource Include="Presentation\Views\Shell\WindowShell.resx">
176      <DependentUpon>WindowShell.cs</DependentUpon>
177      <SubType>Designer</SubType>
178    </EmbeddedResource>
179    <EmbeddedResource Include="Properties\Resources.resx">
180      <Generator>ResXFileCodeGenerator</Generator>
181      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
182      <SubType>Designer</SubType>
183    </EmbeddedResource>
184    <Compile Include="Properties\Resources.Designer.cs">
185      <AutoGen>True</AutoGen>
186      <DependentUpon>Resources.resx</DependentUpon>
187    </Compile>
188    <None Include="Properties\Settings.settings">
189      <Generator>SettingsSingleFileGenerator</Generator>
190      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
191    </None>
192    <Compile Include="Properties\Settings.Designer.cs">
193      <AutoGen>True</AutoGen>
194      <DependentUpon>Settings.settings</DependentUpon>
195      <DesignTimeSharedInput>True</DesignTimeSharedInput>
196    </Compile>
197    <Compile Include="Tasks\IDocumentTasks.cs" />
198    <Compile Include="Tasks\Stubs\StubDocumentTasks.cs" />
199    <Compile Include="Test\Call.cs" />
200    <Compile Include="Test\Extensions\AssertionExtensions.cs" />
201  </ItemGroup>
202  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
203  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
204       Other similar extension points exist, see Microsoft.Common.targets.
205  <Target Name="BeforeBuild">
206  </Target>
207  <Target Name="AfterBuild">
208  </Target>
209  -->
210</Project>