WinForms.csproj 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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>{2127DE5E-E17E-43D4-884A-7BA252C7500C}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>WinForms</RootNamespace>
  10. <AssemblyName>WinForms</AssemblyName>
  11. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <Deterministic>true</Deterministic>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>x86</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. <Prefer32Bit>false</Prefer32Bit>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <PlatformTarget>AnyCPU</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. <Prefer32Bit>false</Prefer32Bit>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="System" />
  39. <Reference Include="System.Data" />
  40. <Reference Include="System.Deployment" />
  41. <Reference Include="System.Design" />
  42. <Reference Include="System.Drawing" />
  43. <Reference Include="System.Windows.Forms" />
  44. <Reference Include="System.Xml" />
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Compile Include="Configure.cs">
  48. <SubType>Form</SubType>
  49. </Compile>
  50. <Compile Include="Configure.Designer.cs">
  51. <DependentUpon>Configure.cs</DependentUpon>
  52. </Compile>
  53. <Compile Include="Default.cs">
  54. <SubType>Form</SubType>
  55. </Compile>
  56. <Compile Include="Default.Designer.cs">
  57. <DependentUpon>Default.cs</DependentUpon>
  58. </Compile>
  59. <Compile Include="SelectWork.cs">
  60. <SubType>Form</SubType>
  61. </Compile>
  62. <Compile Include="SelectWork.Designer.cs">
  63. <DependentUpon>SelectWork.cs</DependentUpon>
  64. </Compile>
  65. <Compile Include="Test.cs">
  66. <SubType>Form</SubType>
  67. </Compile>
  68. <Compile Include="Test.Designer.cs">
  69. <DependentUpon>Test.cs</DependentUpon>
  70. </Compile>
  71. <Compile Include="Program.cs" />
  72. <Compile Include="Properties\AssemblyInfo.cs" />
  73. <EmbeddedResource Include="Configure.resx">
  74. <DependentUpon>Configure.cs</DependentUpon>
  75. </EmbeddedResource>
  76. <EmbeddedResource Include="Default.resx">
  77. <DependentUpon>Default.cs</DependentUpon>
  78. </EmbeddedResource>
  79. <EmbeddedResource Include="SelectWork.resx">
  80. <DependentUpon>SelectWork.cs</DependentUpon>
  81. </EmbeddedResource>
  82. <EmbeddedResource Include="Test.resx">
  83. <DependentUpon>Test.cs</DependentUpon>
  84. </EmbeddedResource>
  85. <EmbeddedResource Include="Properties\Resources.resx">
  86. <Generator>ResXFileCodeGenerator</Generator>
  87. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  88. <SubType>Designer</SubType>
  89. </EmbeddedResource>
  90. <Compile Include="Properties\Resources.Designer.cs">
  91. <AutoGen>True</AutoGen>
  92. <DependentUpon>Resources.resx</DependentUpon>
  93. <DesignTime>True</DesignTime>
  94. </Compile>
  95. <None Include="App.config" />
  96. <None Include="Properties\Settings.settings">
  97. <Generator>SettingsSingleFileGenerator</Generator>
  98. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  99. </None>
  100. <Compile Include="Properties\Settings.Designer.cs">
  101. <AutoGen>True</AutoGen>
  102. <DependentUpon>Settings.settings</DependentUpon>
  103. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  104. </Compile>
  105. </ItemGroup>
  106. <ItemGroup>
  107. <ProjectReference Include="..\BLL\BLL.csproj">
  108. <Project>{38d7aa58-c95b-449b-86c6-a8073a56e11f}</Project>
  109. <Name>BLL</Name>
  110. </ProjectReference>
  111. <ProjectReference Include="..\Model\Model.csproj">
  112. <Project>{53995dbb-9836-4647-ad22-865884fdeb9e}</Project>
  113. <Name>Model</Name>
  114. </ProjectReference>
  115. </ItemGroup>
  116. <ItemGroup />
  117. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  118. </Project>