WindowsFormsApp3.csproj 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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>{28E4CD5B-734B-4A86-8CA3-7F58688F17FA}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>WindowsFormsApp3</RootNamespace>
  10. <AssemblyName>WindowsFormsApp3</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="System" />
  43. <Reference Include="System.ComponentModel.DataAnnotations" />
  44. <Reference Include="System.Core" />
  45. <Reference Include="System.Runtime.Serialization" />
  46. <Reference Include="System.Security" />
  47. <Reference Include="System.Xml.Linq" />
  48. <Reference Include="System.Data.DataSetExtensions" />
  49. <Reference Include="Microsoft.CSharp" />
  50. <Reference Include="System.Data" />
  51. <Reference Include="System.Deployment" />
  52. <Reference Include="System.Drawing" />
  53. <Reference Include="System.Net.Http" />
  54. <Reference Include="System.Windows.Forms" />
  55. <Reference Include="System.Xml" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <Compile Include="Form1.cs">
  59. <SubType>Form</SubType>
  60. </Compile>
  61. <Compile Include="Form1.Designer.cs">
  62. <DependentUpon>Form1.cs</DependentUpon>
  63. </Compile>
  64. <Compile Include="Model1.Context.cs">
  65. <AutoGen>True</AutoGen>
  66. <DesignTime>True</DesignTime>
  67. <DependentUpon>Model1.Context.tt</DependentUpon>
  68. </Compile>
  69. <Compile Include="Model1.cs">
  70. <AutoGen>True</AutoGen>
  71. <DesignTime>True</DesignTime>
  72. <DependentUpon>Model1.tt</DependentUpon>
  73. </Compile>
  74. <Compile Include="Model1.Designer.cs">
  75. <AutoGen>True</AutoGen>
  76. <DesignTime>True</DesignTime>
  77. <DependentUpon>Model1.edmx</DependentUpon>
  78. </Compile>
  79. <Compile Include="Program.cs" />
  80. <Compile Include="Properties\AssemblyInfo.cs" />
  81. <Compile Include="Пользователи.cs">
  82. <DependentUpon>Model1.tt</DependentUpon>
  83. </Compile>
  84. <EmbeddedResource Include="Form1.resx">
  85. <DependentUpon>Form1.cs</DependentUpon>
  86. </EmbeddedResource>
  87. <EmbeddedResource Include="Properties\Resources.resx">
  88. <Generator>ResXFileCodeGenerator</Generator>
  89. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  90. <SubType>Designer</SubType>
  91. </EmbeddedResource>
  92. <Compile Include="Properties\Resources.Designer.cs">
  93. <AutoGen>True</AutoGen>
  94. <DependentUpon>Resources.resx</DependentUpon>
  95. </Compile>
  96. <EntityDeploy Include="Model1.edmx">
  97. <Generator>EntityModelCodeGenerator</Generator>
  98. <LastGenOutput>Model1.Designer.cs</LastGenOutput>
  99. </EntityDeploy>
  100. <None Include="Model1.edmx.diagram">
  101. <DependentUpon>Model1.edmx</DependentUpon>
  102. </None>
  103. <None Include="packages.config" />
  104. <None Include="Properties\Settings.settings">
  105. <Generator>SettingsSingleFileGenerator</Generator>
  106. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  107. </None>
  108. <Compile Include="Properties\Settings.Designer.cs">
  109. <AutoGen>True</AutoGen>
  110. <DependentUpon>Settings.settings</DependentUpon>
  111. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  112. </Compile>
  113. </ItemGroup>
  114. <ItemGroup>
  115. <None Include="App.config" />
  116. </ItemGroup>
  117. <ItemGroup>
  118. <Content Include="Model1.Context.tt">
  119. <Generator>TextTemplatingFileGenerator</Generator>
  120. <LastGenOutput>Model1.Context.cs</LastGenOutput>
  121. <DependentUpon>Model1.edmx</DependentUpon>
  122. </Content>
  123. <Content Include="Model1.tt">
  124. <Generator>TextTemplatingFileGenerator</Generator>
  125. <DependentUpon>Model1.edmx</DependentUpon>
  126. <LastGenOutput>Model1.cs</LastGenOutput>
  127. </Content>
  128. </ItemGroup>
  129. <ItemGroup>
  130. <Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
  131. </ItemGroup>
  132. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  133. </Project>