spgen.csproj 4.0 KB

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