EfDbCommentGenerator.csproj 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{72A3827C-D797-4CBC-BC38-6551FCC04905}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>EfDbCommentGenerator</RootNamespace>
  11. <AssemblyName>EfdbComgen</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <DocumentationFile>bin\Debug\EfdbComgen.xml</DocumentationFile>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <PlatformTarget>AnyCPU</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. </PropertyGroup>
  36. <PropertyGroup>
  37. <StartupObject>
  38. </StartupObject>
  39. </PropertyGroup>
  40. <PropertyGroup>
  41. <RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="System" />
  45. <Reference Include="System.ComponentModel.DataAnnotations" />
  46. <Reference Include="System.Core" />
  47. <Reference Include="System.Xml.Linq" />
  48. <Reference Include="System.Data.DataSetExtensions" />
  49. <Reference Include="Microsoft.CSharp" />
  50. <Reference Include="System.Data" />
  51. <Reference Include="System.Deployment" />
  52. <Reference Include="System.Drawing" />
  53. <Reference Include="System.Net.Http" />
  54. <Reference Include="System.Windows.Forms" />
  55. <Reference Include="System.Xml" />
  56. </ItemGroup>
  57. <ItemGroup>
  58. <Compile Include="Core\CommentEntry.cs" />
  59. <Compile Include="Core\XmlDocFinder.cs" />
  60. <Compile Include="Demo\DemoData.cs" />
  61. <Compile Include="MainForm.cs">
  62. <SubType>Form</SubType>
  63. </Compile>
  64. <Compile Include="MainForm.Designer.cs">
  65. <DependentUpon>MainForm.cs</DependentUpon>
  66. </Compile>
  67. <Compile Include="Core\MetaMapper.cs" />
  68. <Compile Include="Program.cs" />
  69. <Compile Include="Properties\AssemblyInfo.cs" />
  70. <EmbeddedResource Include="MainForm.resx">
  71. <DependentUpon>MainForm.cs</DependentUpon>
  72. </EmbeddedResource>
  73. <None Include="packages.config" />
  74. </ItemGroup>
  75. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  76. <PropertyGroup>
  77. <PostBuildEvent>if $(ConfigurationName) == Release if not exist $(TargetDir)Packed md $(TargetDir)Packed
  78. if $(ConfigurationName) == Release $(SolutionDir)packages\ILRepack.2.0.12\tools\ILRepack /ndebug /out:$(TargetDir)Packed\$(TargetFileName) $(TargetPath)
  79. if $(ConfigurationName) == Release if exist $(TargetDir)Packed\$(TargetFileName).config del $(TargetDir)Packed\$(TargetFileName).config</PostBuildEvent>
  80. </PropertyGroup>
  81. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  82. Other similar extension points exist, see Microsoft.Common.targets.
  83. <Target Name="BeforeBuild">
  84. </Target>
  85. <Target Name="AfterBuild">
  86. </Target>
  87. -->
  88. </Project>