DocToolkit.csproj 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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>8.0.50727</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{7E3B9E32-DC2B-4E59-839A-42B8D4D4E5F4}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>DocToolkit</RootNamespace>
  12. <AssemblyName>DocToolkit</AssemblyName>
  13. <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
  14. <FileUpgradeFlags>
  15. </FileUpgradeFlags>
  16. <OldToolsVersion>2.0</OldToolsVersion>
  17. <UpgradeBackupLocation />
  18. <PublishUrl>publish\</PublishUrl>
  19. <Install>true</Install>
  20. <InstallFrom>Disk</InstallFrom>
  21. <UpdateEnabled>false</UpdateEnabled>
  22. <UpdateMode>Foreground</UpdateMode>
  23. <UpdateInterval>7</UpdateInterval>
  24. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  25. <UpdatePeriodically>false</UpdatePeriodically>
  26. <UpdateRequired>false</UpdateRequired>
  27. <MapFileExtensions>true</MapFileExtensions>
  28. <ApplicationRevision>0</ApplicationRevision>
  29. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  30. <IsWebBootstrapper>false</IsWebBootstrapper>
  31. <UseApplicationTrust>false</UseApplicationTrust>
  32. <BootstrapperEnabled>true</BootstrapperEnabled>
  33. </PropertyGroup>
  34. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  35. <DebugSymbols>true</DebugSymbols>
  36. <DebugType>full</DebugType>
  37. <Optimize>false</Optimize>
  38. <OutputPath>bin\Debug\</OutputPath>
  39. <DefineConstants>DEBUG;TRACE</DefineConstants>
  40. <ErrorReport>prompt</ErrorReport>
  41. <WarningLevel>4</WarningLevel>
  42. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  43. </PropertyGroup>
  44. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  45. <DebugType>pdbonly</DebugType>
  46. <Optimize>true</Optimize>
  47. <OutputPath>bin\Release\</OutputPath>
  48. <DefineConstants>TRACE</DefineConstants>
  49. <ErrorReport>prompt</ErrorReport>
  50. <WarningLevel>4</WarningLevel>
  51. <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
  52. </PropertyGroup>
  53. <ItemGroup>
  54. <Reference Include="System" />
  55. <Reference Include="System.Data" />
  56. <Reference Include="System.Drawing" />
  57. <Reference Include="System.Windows.Forms" />
  58. <Reference Include="System.Xml" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Compile Include="DocManager.cs" />
  62. <Compile Include="DragDropManager.cs" />
  63. <Compile Include="MruManager.cs" />
  64. <Compile Include="PersistWindowState.cs" />
  65. <Compile Include="Properties\AssemblyInfo.cs" />
  66. </ItemGroup>
  67. <ItemGroup>
  68. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  69. <Visible>False</Visible>
  70. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  71. <Install>false</Install>
  72. </BootstrapperPackage>
  73. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  74. <Visible>False</Visible>
  75. <ProductName>.NET Framework 3.5 SP1</ProductName>
  76. <Install>true</Install>
  77. </BootstrapperPackage>
  78. <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
  79. <Visible>False</Visible>
  80. <ProductName>Windows Installer 3.1</ProductName>
  81. <Install>true</Install>
  82. </BootstrapperPackage>
  83. </ItemGroup>
  84. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  85. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  86. Other similar extension points exist, see Microsoft.Common.targets.
  87. <Target Name="BeforeBuild">
  88. </Target>
  89. <Target Name="AfterBuild">
  90. </Target>
  91. -->
  92. </Project>