Realm.csproj 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" 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>8.0.50727</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{15B3E0D2-6217-493A-A690-158C497F5318}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Realm</RootNamespace>
  12. <AssemblyName>Realm</AssemblyName>
  13. <ProjectTypeGuids>{3D9AD99F-2412-4246-B90B-4EAA41C64699};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  14. <StartArguments>/client:"WcfTestClient.exe"</StartArguments>
  15. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  16. <WcfConfigValidationEnabled>True</WcfConfigValidationEnabled>
  17. <XsdCodeGenEnabled>True</XsdCodeGenEnabled>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>..\..\Bin\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="System" />
  38. <Reference Include="System.Core" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Compile Include="Properties\AssemblyInfo.cs" />
  42. <Compile Include="Calculator.cs" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <None Include="App.config" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <ProjectReference Include="..\..\Contract\RealmContract\RealmContract.csproj">
  49. <Project>{E62B0633-1767-44A0-9479-C8E9D19DA4B8}</Project>
  50. <Name>RealmContract</Name>
  51. </ProjectReference>
  52. </ItemGroup>
  53. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  54. <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\WCF\Microsoft.VisualStudio.ServiceModel.targets" />
  55. <ProjectExtensions>
  56. <VisualStudio>
  57. <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
  58. <WcfProjectProperties>
  59. <AutoStart>True</AutoStart>
  60. </WcfProjectProperties>
  61. </FlavorProperties>
  62. </VisualStudio>
  63. </ProjectExtensions>
  64. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  65. Other similar extension points exist, see Microsoft.Common.targets.
  66. <Target Name="BeforeBuild">
  67. </Target>
  68. <Target Name="AfterBuild">
  69. </Target>
  70. -->
  71. </Project>