FastReport.Service.csproj 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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>{D4496C0B-9EED-4776-AD18-049493B8C737}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>FastReport.Service</RootNamespace>
  12. <AssemblyName>FastReport.Service</AssemblyName>
  13. <SignAssembly>true</SignAssembly>
  14. <AssemblyOriginatorKeyFile>..\FastReport.Net.snk</AssemblyOriginatorKeyFile>
  15. <ProjectTypeGuids>{3D9AD99F-2412-4246-B90B-4EAA41C64699};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  16. <StartArguments>/client:"WcfTestClient.exe"</StartArguments>
  17. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  18. <TargetFrameworkProfile>
  19. </TargetFrameworkProfile>
  20. </PropertyGroup>
  21. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  22. <DebugSymbols>true</DebugSymbols>
  23. <DebugType>full</DebugType>
  24. <Optimize>false</Optimize>
  25. <OutputPath>bin\Debug\</OutputPath>
  26. <DefineConstants>DOTNET_4;DEBUG;TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>DOTNET_4;TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="FastReport">
  40. <HintPath>..\FastReport\bin\Debug\FastReport.dll</HintPath>
  41. </Reference>
  42. <Reference Include="FastReport.Bars">
  43. <HintPath>..\FastReport.Bars\bin\Debug\FastReport.Bars.dll</HintPath>
  44. </Reference>
  45. <Reference Include="Microsoft.CSharp" />
  46. <Reference Include="System" />
  47. <Reference Include="System.configuration" />
  48. <Reference Include="System.Core" />
  49. <Reference Include="System.Data" />
  50. <Reference Include="System.Drawing" />
  51. <Reference Include="System.Net" />
  52. <Reference Include="System.Runtime.Serialization" />
  53. <Reference Include="System.ServiceModel" />
  54. <Reference Include="System.ServiceModel.Web" />
  55. <Reference Include="System.Web" />
  56. <Reference Include="System.Web.Extensions" />
  57. <Reference Include="System.Xml" />
  58. <Reference Include="System.Xml.Linq" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Compile Include="IReportService.cs" />
  62. <Compile Include="MultipartParser.cs" />
  63. <Compile Include="Properties\AssemblyInfo.cs" />
  64. <Compile Include="ReportExport.cs" />
  65. <Compile Include="ReportService.cs" />
  66. <Compile Include="ReportServiceGears.cs" />
  67. <Compile Include="ReportServiceList.cs" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <None Include="App.config" />
  71. </ItemGroup>
  72. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  73. <ProjectExtensions>
  74. <VisualStudio>
  75. <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
  76. <WcfProjectProperties>
  77. <AutoStart>True</AutoStart>
  78. </WcfProjectProperties>
  79. </FlavorProperties>
  80. </VisualStudio>
  81. </ProjectExtensions>
  82. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  83. Other similar extension points exist, see Microsoft.Common.targets.
  84. <Target Name="BeforeBuild">
  85. </Target>
  86. <Target Name="AfterBuild">
  87. </Target>
  88. -->
  89. </Project>