<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{0686B6EA-7782-45FE-A990-A06EAD8A57C6}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>WhiteNoise.Domain</RootNamespace>
<AssemblyName>WhiteNoise.Domain</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</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>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="FluentNHibernate">
<HintPath>..\Resources\FluentNHibernate.dll</HintPath>
</Reference>
<Reference Include="NHibernate">
<HintPath>..\Resources\NHibernate.dll</HintPath>
</Reference>
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Entities\Packet.cs" />
<Compile Include="NHibernate\NHibernateConfiguration.cs" />
<Compile Include="Abstract\IRepository.cs" />
<Compile Include="Abstract\IPacketRepository.cs" />
<Compile Include="Concrete\DbPacketRepository.cs" />
<Compile Include="Concrete\DbRepository.cs" />
<Compile Include="Mapping\PacketMap.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Folder Include="Abstract\" />
<Folder Include="Entities\" />
<Folder Include="Concrete\" />
<Folder Include="Mapping\" />
<Folder Include="NHibernate\" />
</ItemGroup>
</Project>
|