EfDbCommentGenerator.csproj 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="C:\NuGetLocalRepo\ILRepack.2.0.18\build\ILRepack.props" Condition="Exists('C:\NuGetLocalRepo\ILRepack.2.0.18\build\ILRepack.props')" />
  4. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  5. <PropertyGroup>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{72A3827C-D797-4CBC-BC38-6551FCC04905}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>EfDbCommentGenerator</RootNamespace>
  12. <AssemblyName>EfdbComgen</AssemblyName>
  13. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  16. <NuGetPackageImportStamp>
  17. </NuGetPackageImportStamp>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  20. <PlatformTarget>AnyCPU</PlatformTarget>
  21. <DebugSymbols>true</DebugSymbols>
  22. <DebugType>full</DebugType>
  23. <Optimize>false</Optimize>
  24. <OutputPath>bin\Debug\</OutputPath>
  25. <DefineConstants>DEBUG;TRACE</DefineConstants>
  26. <ErrorReport>prompt</ErrorReport>
  27. <WarningLevel>4</WarningLevel>
  28. <DocumentationFile>bin\Debug\EfdbComgen.xml</DocumentationFile>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  31. <PlatformTarget>AnyCPU</PlatformTarget>
  32. <DebugType>pdbonly</DebugType>
  33. <Optimize>true</Optimize>
  34. <OutputPath>bin\Release\</OutputPath>
  35. <DefineConstants>TRACE</DefineConstants>
  36. <ErrorReport>prompt</ErrorReport>
  37. <WarningLevel>4</WarningLevel>
  38. </PropertyGroup>
  39. <PropertyGroup>
  40. <StartupObject>
  41. </StartupObject>
  42. </PropertyGroup>
  43. <PropertyGroup>
  44. <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
  45. </PropertyGroup>
  46. <ItemGroup>
  47. <Reference Include="System" />
  48. <Reference Include="System.ComponentModel.DataAnnotations" />
  49. <Reference Include="System.Core" />
  50. <Reference Include="System.Xml.Linq" />
  51. <Reference Include="System.Data.DataSetExtensions" />
  52. <Reference Include="Microsoft.CSharp" />
  53. <Reference Include="System.Data" />
  54. <Reference Include="System.Deployment" />
  55. <Reference Include="System.Drawing" />
  56. <Reference Include="System.Net.Http" />
  57. <Reference Include="System.Windows.Forms" />
  58. <Reference Include="System.Xml" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Compile Include="Core\CommentEntry.cs" />
  62. <Compile Include="Core\XmlDocFinder.cs" />
  63. <Compile Include="Demo\DemoData.cs" />
  64. <Compile Include="MainForm.cs">
  65. <SubType>Form</SubType>
  66. </Compile>
  67. <Compile Include="MainForm.Designer.cs">
  68. <DependentUpon>MainForm.cs</DependentUpon>
  69. </Compile>
  70. <Compile Include="Core\MetaMapper.cs" />
  71. <Compile Include="Program.cs" />
  72. <Compile Include="Properties\AssemblyInfo.cs" />
  73. <EmbeddedResource Include="MainForm.resx">
  74. <DependentUpon>MainForm.cs</DependentUpon>
  75. </EmbeddedResource>
  76. </ItemGroup>
  77. <ItemGroup>
  78. <None Include="packages.config" />
  79. </ItemGroup>
  80. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  81. <PropertyGroup>
  82. <PostBuildEvent>
  83. if $(ConfigurationName) == Release if not exist $(TargetDir)Packed md $(TargetDir)Packed
  84. if $(ConfigurationName) == Release $(ILRepack) /ndebug /out:$(TargetDir)Packed\$(TargetFileName) $(TargetPath)
  85. if $(ConfigurationName) == Release if exist $(TargetDir)Packed\$(TargetFileName).config del $(TargetDir)Packed\$(TargetFileName).config</PostBuildEvent>
  86. </PropertyGroup>
  87. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  88. <PropertyGroup>
  89. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  90. </PropertyGroup>
  91. <Error Condition="!Exists('C:\NuGetLocalRepo\ILRepack.2.0.18\build\ILRepack.props')" Text="$([System.String]::Format('$(ErrorText)', 'C:\NuGetLocalRepo\ILRepack.2.0.18\build\ILRepack.props'))" />
  92. </Target>
  93. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  94. Other similar extension points exist, see Microsoft.Common.targets.
  95. <Target Name="BeforeBuild">
  96. </Target>
  97. <Target Name="AfterBuild">
  98. </Target>
  99. -->
  100. </Project>