EfDbCommentGenerator.csproj 4.8 KB

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