CentralServer.csproj 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" 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>{A8239E54-1EC2-4E1B-A7D0-371979E36CD5}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>CentralServer</RootNamespace>
  10. <AssemblyName>CentralServer</AssemblyName>
  11. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  37. <HintPath>..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll</HintPath>
  38. </Reference>
  39. <Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  40. <HintPath>..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.SqlServer.dll</HintPath>
  41. </Reference>
  42. <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  43. <HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
  44. </Reference>
  45. <Reference Include="System" />
  46. <Reference Include="System.ComponentModel.DataAnnotations" />
  47. <Reference Include="System.Core" />
  48. <Reference Include="System.Runtime.Serialization" />
  49. <Reference Include="System.Security" />
  50. <Reference Include="System.Xml.Linq" />
  51. <Reference Include="System.Data.DataSetExtensions" />
  52. <Reference Include="Microsoft.CSharp" />
  53. <Reference Include="System.Data" />
  54. <Reference Include="System.Net.Http" />
  55. <Reference Include="System.Xml" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <Compile Include="Cashier.cs">
  59. <DependentUpon>StoreModel.tt</DependentUpon>
  60. </Compile>
  61. <Compile Include="Employee.cs">
  62. <DependentUpon>StoreModel.tt</DependentUpon>
  63. </Compile>
  64. <Compile Include="Order.cs">
  65. <DependentUpon>StoreModel.tt</DependentUpon>
  66. </Compile>
  67. <Compile Include="PaymentMetod.cs">
  68. <DependentUpon>StoreModel.tt</DependentUpon>
  69. </Compile>
  70. <Compile Include="Product.cs">
  71. <DependentUpon>StoreModel.tt</DependentUpon>
  72. </Compile>
  73. <Compile Include="ProductInOrder.cs">
  74. <DependentUpon>StoreModel.tt</DependentUpon>
  75. </Compile>
  76. <Compile Include="Program.cs" />
  77. <Compile Include="Properties\AssemblyInfo.cs" />
  78. <Compile Include="RootDataOfCashier.cs" />
  79. <Compile Include="RootDataOfStore.cs" />
  80. <Compile Include="Store.cs">
  81. <DependentUpon>StoreModel.tt</DependentUpon>
  82. </Compile>
  83. <Compile Include="StoreModel.Context.cs">
  84. <AutoGen>True</AutoGen>
  85. <DesignTime>True</DesignTime>
  86. <DependentUpon>StoreModel.Context.tt</DependentUpon>
  87. </Compile>
  88. <Compile Include="StoreModel.cs">
  89. <AutoGen>True</AutoGen>
  90. <DesignTime>True</DesignTime>
  91. <DependentUpon>StoreModel.tt</DependentUpon>
  92. </Compile>
  93. <Compile Include="StoreModel.Designer.cs">
  94. <AutoGen>True</AutoGen>
  95. <DesignTime>True</DesignTime>
  96. <DependentUpon>StoreModel.edmx</DependentUpon>
  97. </Compile>
  98. <Compile Include="WorkShift.cs">
  99. <DependentUpon>StoreModel.tt</DependentUpon>
  100. </Compile>
  101. </ItemGroup>
  102. <ItemGroup>
  103. <None Include="App.config" />
  104. <EntityDeploy Include="StoreModel.edmx">
  105. <Generator>EntityModelCodeGenerator</Generator>
  106. <LastGenOutput>StoreModel.Designer.cs</LastGenOutput>
  107. </EntityDeploy>
  108. <None Include="packages.config" />
  109. <None Include="StoreModel.edmx.diagram">
  110. <DependentUpon>StoreModel.edmx</DependentUpon>
  111. </None>
  112. </ItemGroup>
  113. <ItemGroup>
  114. <Content Include="StoreModel.Context.tt">
  115. <Generator>TextTemplatingFileGenerator</Generator>
  116. <LastGenOutput>StoreModel.Context.cs</LastGenOutput>
  117. <DependentUpon>StoreModel.edmx</DependentUpon>
  118. </Content>
  119. <Content Include="StoreModel.tt">
  120. <Generator>TextTemplatingFileGenerator</Generator>
  121. <DependentUpon>StoreModel.edmx</DependentUpon>
  122. <LastGenOutput>StoreModel.cs</LastGenOutput>
  123. </Content>
  124. </ItemGroup>
  125. <ItemGroup>
  126. <Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
  127. </ItemGroup>
  128. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  129. </Project>