No Description

WhiteNoise.Domain.csproj 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>10.0.0</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{0686B6EA-7782-45FE-A990-A06EAD8A57C6}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <RootNamespace>WhiteNoise.Domain</RootNamespace>
  11. <AssemblyName>WhiteNoise.Domain</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>true</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>false</Optimize>
  17. <OutputPath>bin\Debug</OutputPath>
  18. <DefineConstants>DEBUG;</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <ConsolePause>false</ConsolePause>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  24. <DebugType>none</DebugType>
  25. <Optimize>false</Optimize>
  26. <OutputPath>bin\Release</OutputPath>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. <ConsolePause>false</ConsolePause>
  30. </PropertyGroup>
  31. <ItemGroup>
  32. <Reference Include="System" />
  33. <Reference Include="FluentNHibernate">
  34. <HintPath>..\Resources\FluentNHibernate.dll</HintPath>
  35. </Reference>
  36. <Reference Include="NHibernate">
  37. <HintPath>..\Resources\NHibernate.dll</HintPath>
  38. </Reference>
  39. <Reference Include="System.Core" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <Compile Include="AssemblyInfo.cs" />
  43. <Compile Include="Entities\Packet.cs" />
  44. <Compile Include="NHibernate\NHibernateConfiguration.cs" />
  45. <Compile Include="Abstract\IRepository.cs" />
  46. <Compile Include="Abstract\IPacketRepository.cs" />
  47. <Compile Include="Concrete\DbPacketRepository.cs" />
  48. <Compile Include="Concrete\DbRepository.cs" />
  49. <Compile Include="Mapping\PacketMap.cs" />
  50. <Compile Include="Entities\DatabaseEntity.cs" />
  51. </ItemGroup>
  52. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  53. <ItemGroup>
  54. <Folder Include="Abstract\" />
  55. <Folder Include="Entities\" />
  56. <Folder Include="Concrete\" />
  57. <Folder Include="Mapping\" />
  58. <Folder Include="NHibernate\" />
  59. </ItemGroup>
  60. </Project>