Taylohtio/GeneralApi/GeneralApi.Core/GeneralApi.Core.csproj

169 lines
8.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{D14A4C2C-72E5-4E75-8E20-083897AF0220}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Taloyhtio.GeneralApi.Core</RootNamespace>
<AssemblyName>Taloyhtio.GeneralApi.Core</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</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>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>keyfile.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="AutoMapper">
<HintPath>..\..\DLLs\AutoMapper.dll</HintPath>
</Reference>
<Reference Include="FluentNHibernate">
<HintPath>..\..\DLLs\FluentNHibernate.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Practices.EnterpriseLibrary.Logging, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>Dlls\Microsoft.Practices.EnterpriseLibrary.Logging.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.Practices.ServiceLocation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>Dlls\Microsoft.Practices.ServiceLocation.dll</HintPath>
</Reference>
<Reference Include="NHibernate">
<HintPath>..\..\DLLs\NHibernate.dll</HintPath>
</Reference>
<Reference Include="NHibernate.ByteCode.LinFu, Version=2.1.2.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>Dlls\NHibernate.ByteCode.LinFu.dll</HintPath>
</Reference>
<Reference Include="NHibernate.Linq">
<HintPath>..\..\DLLs\NHibernate.Linq.dll</HintPath>
</Reference>
<Reference Include="NHibernate.Validator">
<HintPath>..\..\DLLs\NHibernate.Validator.dll</HintPath>
</Reference>
<Reference Include="NVelocity">
<HintPath>..\..\DLLs\NVelocity.dll</HintPath>
</Reference>
<Reference Include="StructureMap">
<HintPath>..\..\DLLs\StructureMap.dll</HintPath>
</Reference>
<Reference Include="StructureMapAdapter">
<HintPath>..\..\DLLs\StructureMapAdapter.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Web" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Common\Constants.cs" />
<Compile Include="Common\Logger.cs" />
<Compile Include="Common\Pair.cs" />
<Compile Include="Entities\BoardMember.cs" />
<Compile Include="Entities\Condo.cs" />
<Compile Include="Entities\PersistentObject.cs" />
<Compile Include="Infrastructure\AutoMapper\AutoMapperConfiguration.cs" />
<Compile Include="Infrastructure\AutoMapper\Profiles\DtoProfile.cs" />
<Compile Include="Infrastructure\DataAccess\ISessionSource.cs" />
<Compile Include="Infrastructure\DataAccess\IUnitOfWork.cs" />
<Compile Include="Infrastructure\DataAccess\Mappings\BoardMemberMap.cs" />
<Compile Include="Infrastructure\DataAccess\Mappings\CondoMap.cs" />
<Compile Include="Infrastructure\DataAccess\NHConfiguration.cs" />
<Compile Include="Infrastructure\DataAccess\NHValidatorConfiguration.cs" />
<Compile Include="Infrastructure\DataAccess\SessionSource.cs" />
<Compile Include="Infrastructure\DataAccess\UnitOfWork.cs" />
<Compile Include="Infrastructure\IoC\IoCConfiguration.cs" />
<Compile Include="Infrastructure\Validation\BoardMemberValidationDef.cs" />
<Compile Include="Infrastructure\Validation\CondoValidationDef.cs" />
<Compile Include="Infrastructure\Validation\Constraints\BoardMemberUniqueAttribute.cs" />
<Compile Include="Infrastructure\Validation\Constraints\CondoUniqueBusinessIdAttribute.cs" />
<Compile Include="Infrastructure\Validation\Constraints\CondoUniqueOfficialNameAttribute.cs" />
<Compile Include="Infrastructure\Validation\Constraints\Validators\BoardMemberUniqueValidator.cs" />
<Compile Include="Infrastructure\Validation\Constraints\Validators\CondoUniqueBusinessIdValidator.cs" />
<Compile Include="Infrastructure\Validation\Constraints\Validators\CondoUniqueOfficialNameValidator.cs" />
<Compile Include="Infrastructure\Web\AutoMapperConfigurationModule.cs" />
<Compile Include="Infrastructure\Web\DependencyRegistarModule.cs" />
<Compile Include="Infrastructure\Web\UnitOfWorkModule.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Repositories\IBoardMemberRepository.cs" />
<Compile Include="Repositories\ICondoRepository.cs" />
<Compile Include="Repositories\Impl\BoardMemberRepository.cs" />
<Compile Include="Repositories\Impl\CondoRepository.cs" />
<Compile Include="Repositories\Impl\RepositoryBase.cs" />
<Compile Include="Repositories\IRepository.cs" />
<Compile Include="Services\IConverter.cs" />
<Compile Include="Services\IEmailService.cs" />
<Compile Include="Services\ILogger.cs" />
<Compile Include="Services\IMapper.cs" />
<Compile Include="Services\Impl\Converter.cs" />
<Compile Include="Services\Impl\EmailService.cs" />
<Compile Include="Services\Impl\Mapper.cs" />
<Compile Include="Services\Impl\SettingsProvider.cs" />
<Compile Include="Services\Impl\TemplateEngine.cs" />
<Compile Include="Services\ISettingsProvider.cs" />
<Compile Include="Services\ITemplateEngine.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Dlls\AutoMapper.dll" />
<Content Include="Dlls\FluentNHibernate.dll" />
<Content Include="Dlls\LinFu.DynamicProxy.dll" />
<Content Include="Dlls\Microsoft.Practices.EnterpriseLibrary.Logging.dll" />
<Content Include="Dlls\Microsoft.Practices.ServiceLocation.dll" />
<Content Include="Dlls\NHibernate.ByteCode.LinFu.dll" />
<Content Include="Dlls\NHibernate.dll" />
<Content Include="Dlls\NHibernate.Linq.dll" />
<Content Include="Dlls\NHibernate.Validator.dll" />
<Content Include="Dlls\NVelocity.dll" />
<Content Include="Dlls\StructureMap.dll" />
<Content Include="Dlls\StructureMapAdapter.dll" />
</ItemGroup>
<ItemGroup>
<None Include="keyfile.snk" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GeneralApi.Common\GeneralApi.Common.csproj">
<Project>{eb77a123-a122-41b1-a9dd-13de15f15c91}</Project>
<Name>GeneralApi.Common</Name>
</ProjectReference>
<ProjectReference Include="..\GeneralApi.Resources\GeneralApi.Resources.csproj">
<Project>{04ab0a95-525e-432a-91db-0758d77e844e}</Project>
<Name>GeneralApi.Resources</Name>
</ProjectReference>
</ItemGroup>
<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>
-->
</Project>