ConsoleApplication1.csproj 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>9.0.30729</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{E2326D16-89B6-4063-AB3C-85D92EDF9A5E}</ProjectGuid>
  9. <OutputType>Exe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>ConsoleApplication1</RootNamespace>
  12. <AssemblyName>ConsoleApplication1</AssemblyName>
  13. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  34. <DebugSymbols>true</DebugSymbols>
  35. <OutputPath>bin\x86\Debug\</OutputPath>
  36. <DefineConstants>DEBUG;TRACE</DefineConstants>
  37. <DebugType>full</DebugType>
  38. <PlatformTarget>x86</PlatformTarget>
  39. <ErrorReport>prompt</ErrorReport>
  40. </PropertyGroup>
  41. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  42. <OutputPath>bin\x86\Release\</OutputPath>
  43. <DefineConstants>TRACE</DefineConstants>
  44. <Optimize>true</Optimize>
  45. <DebugType>pdbonly</DebugType>
  46. <PlatformTarget>x86</PlatformTarget>
  47. <ErrorReport>prompt</ErrorReport>
  48. </PropertyGroup>
  49. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
  50. <DebugSymbols>true</DebugSymbols>
  51. <OutputPath>bin\x64\Debug\</OutputPath>
  52. <DefineConstants>DEBUG;TRACE</DefineConstants>
  53. <DebugType>full</DebugType>
  54. <PlatformTarget>x64</PlatformTarget>
  55. <ErrorReport>prompt</ErrorReport>
  56. </PropertyGroup>
  57. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
  58. <OutputPath>bin\x64\Release\</OutputPath>
  59. <DefineConstants>TRACE</DefineConstants>
  60. <Optimize>true</Optimize>
  61. <DebugType>pdbonly</DebugType>
  62. <PlatformTarget>x64</PlatformTarget>
  63. <ErrorReport>prompt</ErrorReport>
  64. </PropertyGroup>
  65. <ItemGroup>
  66. <Reference Include="System" />
  67. <Reference Include="System.Core">
  68. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  69. </Reference>
  70. <Reference Include="System.Xml.Linq">
  71. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  72. </Reference>
  73. <Reference Include="System.Data.DataSetExtensions">
  74. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  75. </Reference>
  76. <Reference Include="System.Data" />
  77. <Reference Include="System.Xml" />
  78. </ItemGroup>
  79. <ItemGroup>
  80. <Compile Include="Program.cs" />
  81. <Compile Include="Properties\AssemblyInfo.cs" />
  82. </ItemGroup>
  83. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  84. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  85. Other similar extension points exist, see Microsoft.Common.targets.
  86. <Target Name="BeforeBuild">
  87. </Target>
  88. <Target Name="AfterBuild">
  89. </Target>
  90. -->
  91. </Project>