MakeIncremental.csproj 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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>{E0855FC6-7205-4621-A975-7A8F2886B738}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>MakeIncremental</RootNamespace>
  11. <AssemblyName>MakeIncremental</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <SccProjectName>SAK</SccProjectName>
  15. <SccLocalPath>SAK</SccLocalPath>
  16. <SccAuxPath>SAK</SccAuxPath>
  17. <SccProvider>SAK</SccProvider>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <PlatformTarget>AnyCPU</PlatformTarget>
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <PlatformTarget>AnyCPU</PlatformTarget>
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. </PropertyGroup>
  38. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  39. <DebugSymbols>true</DebugSymbols>
  40. <OutputPath>bin\x64\Debug\</OutputPath>
  41. <DefineConstants>DEBUG;TRACE</DefineConstants>
  42. <DebugType>full</DebugType>
  43. <PlatformTarget>x64</PlatformTarget>
  44. <ErrorReport>prompt</ErrorReport>
  45. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  46. <Prefer32Bit>true</Prefer32Bit>
  47. </PropertyGroup>
  48. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  49. <OutputPath>bin\x64\Release\</OutputPath>
  50. <DefineConstants>TRACE</DefineConstants>
  51. <Optimize>true</Optimize>
  52. <DebugType>pdbonly</DebugType>
  53. <PlatformTarget>x64</PlatformTarget>
  54. <ErrorReport>prompt</ErrorReport>
  55. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  56. <Prefer32Bit>true</Prefer32Bit>
  57. </PropertyGroup>
  58. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  59. <DebugSymbols>true</DebugSymbols>
  60. <OutputPath>bin\x86\Debug\</OutputPath>
  61. <DefineConstants>DEBUG;TRACE</DefineConstants>
  62. <DebugType>full</DebugType>
  63. <PlatformTarget>x86</PlatformTarget>
  64. <ErrorReport>prompt</ErrorReport>
  65. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  66. <Prefer32Bit>true</Prefer32Bit>
  67. </PropertyGroup>
  68. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  69. <OutputPath>bin\x86\Release\</OutputPath>
  70. <DefineConstants>TRACE</DefineConstants>
  71. <Optimize>true</Optimize>
  72. <DebugType>pdbonly</DebugType>
  73. <PlatformTarget>x86</PlatformTarget>
  74. <ErrorReport>prompt</ErrorReport>
  75. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  76. <Prefer32Bit>true</Prefer32Bit>
  77. </PropertyGroup>
  78. <ItemGroup>
  79. <Reference Include="Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" />
  80. <Reference Include="System" />
  81. <Reference Include="System.Core" />
  82. <Reference Include="System.Web" />
  83. <Reference Include="System.Web.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
  84. <Reference Include="System.Xml.Linq" />
  85. <Reference Include="System.Data.DataSetExtensions" />
  86. <Reference Include="Microsoft.CSharp" />
  87. <Reference Include="System.Data" />
  88. <Reference Include="System.Xml" />
  89. </ItemGroup>
  90. <ItemGroup>
  91. <Compile Include="Program.cs" />
  92. <Compile Include="Properties\AssemblyInfo.cs" />
  93. </ItemGroup>
  94. <ItemGroup>
  95. <None Include="App.config" />
  96. </ItemGroup>
  97. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  98. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  99. Other similar extension points exist, see Microsoft.Common.targets.
  100. <Target Name="BeforeBuild">
  101. </Target>
  102. <Target Name="AfterBuild">
  103. </Target>
  104. -->
  105. </Project>