HelloNppPluginDockWindow.csproj 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" 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>{E0A5DC35-54CF-4FE9-BAF2-16D6B92E2445}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>HelloNppPluginDockWindow</RootNamespace>
  11. <AssemblyName>HelloNppPluginDockWindow</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  33. </PropertyGroup>
  34. <PropertyGroup>
  35. <DllExportIdent>22B70A78-05D3-43FE-8331-DB576DA7D331</DllExportIdent>
  36. <DllExportMetaLibName>DllExport.dll</DllExportMetaLibName>
  37. <DllExportNamespace>System.Runtime.InteropServices</DllExportNamespace>
  38. <DllExportDDNSCecil>true</DllExportDDNSCecil>
  39. <DllExportSkipOnAnyCpu>false</DllExportSkipOnAnyCpu>
  40. <DllExportPlatform>Auto</DllExportPlatform>
  41. <DllExportOrdinalsBase>1</DllExportOrdinalsBase>
  42. <DllExportGenExpLib>false</DllExportGenExpLib>
  43. <DllExportOurILAsm>false</DllExportOurILAsm>
  44. <DllExportLeaveIntermediateFiles>false</DllExportLeaveIntermediateFiles>
  45. <DllExportTimeout>30000</DllExportTimeout>
  46. <DllExportPeCheck>2</DllExportPeCheck>
  47. </PropertyGroup>
  48. <ItemGroup>
  49. <Reference Include="DllExport, PublicKeyToken=8337224c9ad9e356">
  50. <HintPath>$(SolutionDir)packages\DllExport.1.6.2\gcache\metalib\$(DllExportNamespace)\$(DllExportMetaLibName)</HintPath>
  51. <Private>False</Private>
  52. <SpecificVersion>False</SpecificVersion>
  53. </Reference>
  54. <Reference Include="System" />
  55. <Reference Include="System.Core" />
  56. <Reference Include="System.Drawing" />
  57. <Reference Include="System.Windows.Forms" />
  58. <Reference Include="System.Xml.Linq" />
  59. <Reference Include="System.Data.DataSetExtensions" />
  60. <Reference Include="Microsoft.CSharp" />
  61. <Reference Include="System.Data" />
  62. <Reference Include="System.Net.Http" />
  63. <Reference Include="System.Xml" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <Compile Include="Main.cs" />
  67. <Compile Include="Properties\AssemblyInfo.cs" />
  68. <Compile Include="SayHiForm.cs">
  69. <SubType>Form</SubType>
  70. </Compile>
  71. <Compile Include="SayHiForm.Designer.cs">
  72. <DependentUpon>SayHiForm.cs</DependentUpon>
  73. </Compile>
  74. <Compile Include="Win32Window.cs" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <EmbeddedResource Include="SayHiForm.resx">
  78. <DependentUpon>SayHiForm.cs</DependentUpon>
  79. </EmbeddedResource>
  80. </ItemGroup>
  81. <Import Project="..\Kbg.NppPluginNET.PluginInfrastructure\Kbg.NppPluginNET.PluginInfrastructure.projitems" Label="Shared" />
  82. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  83. <ImportGroup Label=".NET DllExport">
  84. <Import Project="$(SolutionDir)packages\DllExport.1.6.2\tools\net.r_eg.DllExport.targets" Condition="Exists($([MSBuild]::Escape('$(SolutionDir)packages\DllExport.1.6.2\tools\net.r_eg.DllExport.targets')))" Label="8337224c9ad9e356" />
  85. </ImportGroup>
  86. <Target Name="DllExportRestorePkg" BeforeTargets="PrepareForBuild">
  87. <Error Condition="!Exists('$(SolutionDir)DllExport.bat')" Text="DllExport.bat is not found. Path: '$(SolutionDir)' - https://github.com/3F/DllExport" />
  88. <Exec Condition="('$(DllExportModImported)' != 'true' Or !Exists('$(SolutionDir)packages\DllExport.1.6.2\tools\net.r_eg.DllExport.targets')) And Exists('$(SolutionDir)DllExport.bat')" Command="DllExport.bat -action Restore" WorkingDirectory="$(SolutionDir)" />
  89. </Target>
  90. <Target Name="DllExportRPkgDynamicImport" BeforeTargets="PostBuildEvent" DependsOnTargets="GetFrameworkPaths" Condition="'$(DllExportModImported)' != 'true' And '$(DllExportRPkgDyn)' != 'false'">
  91. <MSBuild BuildInParallel="true" UseResultsCache="true" Projects="$(MSBuildProjectFullPath)" Properties="DllExportRPkgDyn=true" Targets="Build" />
  92. </Target>
  93. </Project>