TestForms.csproj 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{F55B6D7C-DDB3-4958-A4E5-49FC160AC3A6}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>TestForms</RootNamespace>
  12. <AssemblyName>TestForms</AssemblyName>
  13. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  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. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  27. <PlatformTarget>x86</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="System" />
  37. <Reference Include="System.Data" />
  38. <Reference Include="System.Deployment" />
  39. <Reference Include="System.Drawing" />
  40. <Reference Include="System.Windows.Forms" />
  41. <Reference Include="System.Xml" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Compile Include="Form1.cs">
  45. <SubType>Form</SubType>
  46. </Compile>
  47. <Compile Include="Form1.Designer.cs">
  48. <DependentUpon>Form1.cs</DependentUpon>
  49. </Compile>
  50. <Compile Include="Program.cs" />
  51. <Compile Include="Properties\AssemblyInfo.cs" />
  52. <EmbeddedResource Include="Form1.resx">
  53. <DependentUpon>Form1.cs</DependentUpon>
  54. </EmbeddedResource>
  55. <EmbeddedResource Include="Properties\Resources.resx">
  56. <Generator>ResXFileCodeGenerator</Generator>
  57. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  58. <SubType>Designer</SubType>
  59. </EmbeddedResource>
  60. <Compile Include="Properties\Resources.Designer.cs">
  61. <AutoGen>True</AutoGen>
  62. <DependentUpon>Resources.resx</DependentUpon>
  63. </Compile>
  64. <None Include="Properties\Settings.settings">
  65. <Generator>SettingsSingleFileGenerator</Generator>
  66. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  67. </None>
  68. <Compile Include="Properties\Settings.Designer.cs">
  69. <AutoGen>True</AutoGen>
  70. <DependentUpon>Settings.settings</DependentUpon>
  71. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  72. </Compile>
  73. </ItemGroup>
  74. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  75. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  76. Other similar extension points exist, see Microsoft.Common.targets.
  77. <Target Name="BeforeBuild">
  78. </Target>
  79. <Target Name="AfterBuild">
  80. </Target>
  81. -->
  82. </Project>