Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

VS2019CSSample.csproj 3.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  4. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  5. <ProjectGuid>{F8DFD85C-1DD7-4718-8D2D-DC78314A9FB1}</ProjectGuid>
  6. <OutputType>Exe</OutputType>
  7. <NoStandardLibraries>false</NoStandardLibraries>
  8. <AssemblyName>ConsoleApplication</AssemblyName>
  9. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  10. <TargetFrameworkProfile>Client</TargetFrameworkProfile>
  11. <FileAlignment>512</FileAlignment>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  14. <DebugSymbols>true</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>false</Optimize>
  17. <OutputPath>bin\Debug\</OutputPath>
  18. <DefineConstants>DEBUG;TRACE</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. <PlatformTarget>x86</PlatformTarget>
  22. </PropertyGroup>
  23. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
  24. <DebugType>pdbonly</DebugType>
  25. <Optimize>true</Optimize>
  26. <OutputPath>bin\Release\</OutputPath>
  27. <DefineConstants>TRACE</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. <PlatformTarget>x86</PlatformTarget>
  31. </PropertyGroup>
  32. <PropertyGroup>
  33. <RootNamespace>VS2019CSSample</RootNamespace>
  34. </PropertyGroup>
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  36. <DebugSymbols>true</DebugSymbols>
  37. <OutputPath>bin\x64\Debug\</OutputPath>
  38. <DefineConstants>DEBUG;TRACE</DefineConstants>
  39. <DebugType>full</DebugType>
  40. <PlatformTarget>x64</PlatformTarget>
  41. <LangVersion>7.3</LangVersion>
  42. <ErrorReport>prompt</ErrorReport>
  43. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  46. <OutputPath>bin\x64\Release\</OutputPath>
  47. <DefineConstants>TRACE</DefineConstants>
  48. <Optimize>true</Optimize>
  49. <DebugType>pdbonly</DebugType>
  50. <PlatformTarget>x64</PlatformTarget>
  51. <LangVersion>7.3</LangVersion>
  52. <ErrorReport>prompt</ErrorReport>
  53. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  54. </PropertyGroup>
  55. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  56. <DebugSymbols>true</DebugSymbols>
  57. <OutputPath>bin\Debug\</OutputPath>
  58. <DefineConstants>DEBUG;TRACE</DefineConstants>
  59. <DebugType>full</DebugType>
  60. <PlatformTarget>AnyCPU</PlatformTarget>
  61. <LangVersion>7.3</LangVersion>
  62. <ErrorReport>prompt</ErrorReport>
  63. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  64. </PropertyGroup>
  65. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
  66. <OutputPath>bin\Release\</OutputPath>
  67. <DefineConstants>TRACE</DefineConstants>
  68. <Optimize>true</Optimize>
  69. <DebugType>pdbonly</DebugType>
  70. <PlatformTarget>AnyCPU</PlatformTarget>
  71. <LangVersion>7.3</LangVersion>
  72. <ErrorReport>prompt</ErrorReport>
  73. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  74. </PropertyGroup>
  75. <ItemGroup>
  76. <Reference Include="Microsoft.CSharp" />
  77. <Reference Include="System" />
  78. <Reference Include="System.Core" />
  79. <Reference Include="System.Data" />
  80. <Reference Include="System.Data.DataSetExtensions" />
  81. <Reference Include="System.Xml" />
  82. <Reference Include="System.Xml.Linq" />
  83. </ItemGroup>
  84. <ItemGroup>
  85. <Compile Include="main.cs" />
  86. </ItemGroup>
  87. <Import Project="$(MSBuildToolsPath)\Microsoft.CSHARP.Targets" />
  88. <ProjectExtensions>
  89. <VisualStudio AllowExistingFolder="true" />
  90. </ProjectExtensions>
  91. </Project>