DAL.csproj 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{934AAC15-94F6-4729-86AF-CF92BE233B5F}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>DAL</RootNamespace>
  11. <AssemblyName>DAL</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>pdbonly</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>bin\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  34. <HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll</HintPath>
  35. <Private>True</Private>
  36. </Reference>
  37. <Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  38. <HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll</HintPath>
  39. <Private>True</Private>
  40. </Reference>
  41. <Reference Include="System" />
  42. <Reference Include="System.ComponentModel.DataAnnotations" />
  43. <Reference Include="System.Core" />
  44. <Reference Include="System.Runtime.Serialization" />
  45. <Reference Include="System.Security" />
  46. <Reference Include="System.Xml.Linq" />
  47. <Reference Include="System.Data.DataSetExtensions" />
  48. <Reference Include="Microsoft.CSharp" />
  49. <Reference Include="System.Data" />
  50. <Reference Include="System.Net.Http" />
  51. <Reference Include="System.Xml" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <Compile Include="AjouxAuxEntites.cs" />
  55. <Compile Include="ModeleAnnuaire.Context.cs">
  56. <AutoGen>True</AutoGen>
  57. <DesignTime>True</DesignTime>
  58. <DependentUpon>ModeleAnnuaire.Context.tt</DependentUpon>
  59. </Compile>
  60. <Compile Include="ModeleAnnuaire.cs">
  61. <AutoGen>True</AutoGen>
  62. <DesignTime>True</DesignTime>
  63. <DependentUpon>ModeleAnnuaire.tt</DependentUpon>
  64. </Compile>
  65. <Compile Include="ModeleAnnuaire.Designer.cs">
  66. <AutoGen>True</AutoGen>
  67. <DesignTime>True</DesignTime>
  68. <DependentUpon>ModeleAnnuaire.edmx</DependentUpon>
  69. </Compile>
  70. <Compile Include="Personne.cs">
  71. <DependentUpon>ModeleAnnuaire.tt</DependentUpon>
  72. </Compile>
  73. <Compile Include="Properties\AssemblyInfo.cs" />
  74. <Compile Include="Titre.cs">
  75. <DependentUpon>ModeleAnnuaire.tt</DependentUpon>
  76. </Compile>
  77. </ItemGroup>
  78. <ItemGroup>
  79. <None Include="App.config" />
  80. <EntityDeploy Include="ModeleAnnuaire.edmx">
  81. <Generator>EntityModelCodeGenerator</Generator>
  82. <LastGenOutput>ModeleAnnuaire.Designer.cs</LastGenOutput>
  83. </EntityDeploy>
  84. <None Include="ModeleAnnuaire.edmx.diagram">
  85. <DependentUpon>ModeleAnnuaire.edmx</DependentUpon>
  86. </None>
  87. <None Include="packages.config" />
  88. </ItemGroup>
  89. <ItemGroup>
  90. <Content Include="ModeleAnnuaire.Context.tt">
  91. <Generator>TextTemplatingFileGenerator</Generator>
  92. <DependentUpon>ModeleAnnuaire.edmx</DependentUpon>
  93. <LastGenOutput>ModeleAnnuaire.Context.cs</LastGenOutput>
  94. </Content>
  95. <Content Include="ModeleAnnuaire.tt">
  96. <Generator>TextTemplatingFileGenerator</Generator>
  97. <DependentUpon>ModeleAnnuaire.edmx</DependentUpon>
  98. <LastGenOutput>ModeleAnnuaire.cs</LastGenOutput>
  99. </Content>
  100. </ItemGroup>
  101. <ItemGroup>
  102. <Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
  103. </ItemGroup>
  104. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  105. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  106. Other similar extension points exist, see Microsoft.Common.targets.
  107. <Target Name="BeforeBuild">
  108. </Target>
  109. <Target Name="AfterBuild">
  110. </Target>
  111. -->
  112. </Project>