SymbolRW.csproj 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>9.0.30729</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{2BC469D1-46DA-4FBF-A431-6B1344BBCD23}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>QUT.Symbols</RootNamespace>
  12. <AssemblyName>QUT.SymbolRW</AssemblyName>
  13. <SignAssembly>false</SignAssembly>
  14. <AssemblyOriginatorKeyFile>
  15. </AssemblyOriginatorKeyFile>
  16. <FileUpgradeFlags>
  17. </FileUpgradeFlags>
  18. <OldToolsVersion>3.5</OldToolsVersion>
  19. <UpgradeBackupLocation>
  20. </UpgradeBackupLocation>
  21. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  22. <PublishUrl>publish\</PublishUrl>
  23. <Install>true</Install>
  24. <InstallFrom>Disk</InstallFrom>
  25. <UpdateEnabled>false</UpdateEnabled>
  26. <UpdateMode>Foreground</UpdateMode>
  27. <UpdateInterval>7</UpdateInterval>
  28. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  29. <UpdatePeriodically>false</UpdatePeriodically>
  30. <UpdateRequired>false</UpdateRequired>
  31. <MapFileExtensions>true</MapFileExtensions>
  32. <ApplicationRevision>0</ApplicationRevision>
  33. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  34. <IsWebBootstrapper>false</IsWebBootstrapper>
  35. <UseApplicationTrust>false</UseApplicationTrust>
  36. <BootstrapperEnabled>true</BootstrapperEnabled>
  37. </PropertyGroup>
  38. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  39. <DebugSymbols>true</DebugSymbols>
  40. <DebugType>full</DebugType>
  41. <Optimize>false</Optimize>
  42. <OutputPath>bin\Debug\</OutputPath>
  43. <DefineConstants>DEBUG;TRACE</DefineConstants>
  44. <ErrorReport>prompt</ErrorReport>
  45. <WarningLevel>4</WarningLevel>
  46. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  47. </PropertyGroup>
  48. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  49. <DebugType>pdbonly</DebugType>
  50. <Optimize>true</Optimize>
  51. <OutputPath>bin\Release\</OutputPath>
  52. <DefineConstants>TRACE</DefineConstants>
  53. <ErrorReport>prompt</ErrorReport>
  54. <WarningLevel>4</WarningLevel>
  55. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  56. </PropertyGroup>
  57. <ItemGroup>
  58. <Reference Include="System" />
  59. <Reference Include="System.Data" />
  60. <Reference Include="System.Xml" />
  61. </ItemGroup>
  62. <ItemGroup>
  63. <Compile Include="IUnmanaged.cs" />
  64. <Compile Include="SymbolReader.cs" />
  65. <Compile Include="SymbolWriter.cs" />
  66. <Compile Include="Properties\AssemblyInfo.cs" />
  67. <Compile Include="Utilities.cs" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  71. <Visible>False</Visible>
  72. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  73. <Install>false</Install>
  74. </BootstrapperPackage>
  75. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  76. <Visible>False</Visible>
  77. <ProductName>.NET Framework 3.5 SP1</ProductName>
  78. <Install>true</Install>
  79. </BootstrapperPackage>
  80. <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
  81. <Visible>False</Visible>
  82. <ProductName>Windows Installer 3.1</ProductName>
  83. <Install>true</Install>
  84. </BootstrapperPackage>
  85. </ItemGroup>
  86. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  87. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  88. Other similar extension points exist, see Microsoft.Common.targets.
  89. <Target Name="BeforeBuild">
  90. </Target>
  91. <Target Name="AfterBuild">
  92. </Target>
  93. -->
  94. </Project>