ProcessRunner.csproj 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" 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>{692BB2F9-CD24-482F-B13A-4335F27F6EC2}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>ProcessRunner</RootNamespace>
  11. <AssemblyName>ProcessRunner</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  17. <DebugSymbols>true</DebugSymbols>
  18. <OutputPath>..\..\bin\x64\Debug\</OutputPath>
  19. <DefineConstants>DEBUG;TRACE</DefineConstants>
  20. <DebugType>full</DebugType>
  21. <PlatformTarget>AnyCPU</PlatformTarget>
  22. <ErrorReport>prompt</ErrorReport>
  23. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  24. <Prefer32Bit>true</Prefer32Bit>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  27. <OutputPath>..\..\bin\x64\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <Optimize>true</Optimize>
  30. <DebugType>pdbonly</DebugType>
  31. <PlatformTarget>AnyCPU</PlatformTarget>
  32. <ErrorReport>prompt</ErrorReport>
  33. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  34. <Prefer32Bit>true</Prefer32Bit>
  35. </PropertyGroup>
  36. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  37. <DebugSymbols>true</DebugSymbols>
  38. <OutputPath>..\..\bin\x86\Debug\</OutputPath>
  39. <DefineConstants>DEBUG;TRACE</DefineConstants>
  40. <DebugType>full</DebugType>
  41. <PlatformTarget>AnyCPU</PlatformTarget>
  42. <ErrorReport>prompt</ErrorReport>
  43. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  44. <Prefer32Bit>true</Prefer32Bit>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  47. <OutputPath>..\..\bin\x86\Release\</OutputPath>
  48. <DefineConstants>TRACE</DefineConstants>
  49. <Optimize>true</Optimize>
  50. <DebugType>pdbonly</DebugType>
  51. <PlatformTarget>AnyCPU</PlatformTarget>
  52. <ErrorReport>prompt</ErrorReport>
  53. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  54. <Prefer32Bit>true</Prefer32Bit>
  55. </PropertyGroup>
  56. <ItemGroup>
  57. <Reference Include="System" />
  58. <Reference Include="System.Core" />
  59. <Reference Include="System.Xml.Linq" />
  60. <Reference Include="System.Data.DataSetExtensions" />
  61. <Reference Include="Microsoft.CSharp" />
  62. <Reference Include="System.Data" />
  63. <Reference Include="System.Xml" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <Compile Include="Options.cs" />
  67. <Compile Include="Program.cs" />
  68. <Compile Include="Properties\AssemblyInfo.cs" />
  69. <Compile Include="StringExtensions.cs" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <None Include="App.config" />
  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>