/GolfSigma.Inventory/GolfSigma.Inventory.csproj

http://github.com/golfsigma/inventory-client · MSBuild · 104 lines · 104 code · 0 blank · 0 comment · 4 complexity · 58fb8749c0ea07c1e9fcad2b237c77c8 MD5 · raw file

  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.21022</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{4A33E1B7-123A-4750-8001-6F1FCD1D4F00}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>GolfSigma.Inventory</RootNamespace>
  12. <AssemblyName>GolfSigma.Inventory</AssemblyName>
  13. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <SccProjectName>
  16. </SccProjectName>
  17. <SccLocalPath>
  18. </SccLocalPath>
  19. <SccAuxPath>
  20. </SccAuxPath>
  21. <SccProvider>
  22. </SccProvider>
  23. <TargetFrameworkSubset>
  24. </TargetFrameworkSubset>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  27. <DebugSymbols>true</DebugSymbols>
  28. <DebugType>full</DebugType>
  29. <Optimize>false</Optimize>
  30. <OutputPath>bin\Debug\</OutputPath>
  31. <DefineConstants>DEBUG;TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  36. <DebugType>pdbonly</DebugType>
  37. <Optimize>true</Optimize>
  38. <OutputPath>bin\Release\</OutputPath>
  39. <DefineConstants>TRACE</DefineConstants>
  40. <ErrorReport>prompt</ErrorReport>
  41. <WarningLevel>4</WarningLevel>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="System" />
  45. <Reference Include="System.configuration" />
  46. <Reference Include="System.Web" />
  47. <Reference Include="System.Data" />
  48. <Reference Include="System.Xml" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Compile Include="Configuration\AuthenticationSection.cs" />
  52. <Compile Include="Extension\DictionaryExtension.cs" />
  53. <Compile Include="Extension\ExtensionAttribute.cs" />
  54. <Compile Include="Extension\GuidExtension.cs" />
  55. <Compile Include="Extension\PlayerExtension.cs" />
  56. <Compile Include="Extension\StringExtension.cs" />
  57. <Compile Include="InventoryClient.cs" />
  58. <Compile Include="InventoryConfig.cs" />
  59. <Compile Include="InventoryException.cs" />
  60. <Compile Include="Model\Delete\BatchDeleteTeeTimes.cs" />
  61. <Compile Include="Model\Add\BatchPutTeeTimes.cs" />
  62. <Compile Include="Model\BooleanResponse.cs" />
  63. <Compile Include="Model\CourseAverage.cs" />
  64. <Compile Include="Model\Delete\DeleteSearch.cs" />
  65. <Compile Include="Model\Delete\DeleteTeeTime.cs" />
  66. <Compile Include="Model\Error.cs" />
  67. <Compile Include="Model\Get\GetCourseAverage.cs" />
  68. <Compile Include="Model\Get\GetInventory.cs" />
  69. <Compile Include="Model\Get\GetReservation.cs" />
  70. <Compile Include="Model\Get\GetSearch.cs" />
  71. <Compile Include="Model\Get\GetSimilarTeeTime.cs" />
  72. <Compile Include="Model\Get\GetTeeTime.cs" />
  73. <Compile Include="Model\Get\GetTeeTimeCount.cs" />
  74. <Compile Include="Model\IRequest.cs" />
  75. <Compile Include="Model\Add\PutReservation.cs" />
  76. <Compile Include="Model\Add\PutSearch.cs" />
  77. <Compile Include="Model\Add\PutTeeTime.cs" />
  78. <Compile Include="Model\Reservation.cs" />
  79. <Compile Include="Model\ResponseMetadata.cs" />
  80. <Compile Include="Model\Search.cs" />
  81. <Compile Include="Model\SearchFilter.cs" />
  82. <Compile Include="Model\StringResponse.cs" />
  83. <Compile Include="Model\TeeTime.cs" />
  84. <Compile Include="Model\TeeTimesMetadata.cs" />
  85. <Compile Include="Model\Update\UpdateSearch.cs" />
  86. <Compile Include="Model\Update\UpdateTeeTime.cs" />
  87. <Compile Include="Model\WebSiteMetadata.cs" />
  88. <Compile Include="Properties\AssemblyInfo.cs" />
  89. </ItemGroup>
  90. <ItemGroup>
  91. <Folder Include="Mock\" />
  92. </ItemGroup>
  93. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  94. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  95. Other similar extension points exist, see Microsoft.Common.targets.
  96. <Target Name="BeforeBuild">
  97. </Target>
  98. <Target Name="AfterBuild">
  99. </Target>
  100. -->
  101. <PropertyGroup>
  102. <PostBuildEvent>copy "$(TargetDir)$(TargetName)$(TargetExt)" "..\"</PostBuildEvent>
  103. </PropertyGroup>
  104. </Project>