You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.7 KiB

4 years ago
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\Apewer\_Common.props" />
  3. <PropertyGroup>
  4. <NoWarn>CS0108;CS0612</NoWarn>
  5. <OutputType>Library</OutputType>
  6. <TargetFrameworks>net461;net40;net20;netcoreapp3.1</TargetFrameworks>
  7. </PropertyGroup>
  8. <PropertyGroup>
  9. <AssemblyName>Apewer.Windows</AssemblyName>
  10. <Description></Description>
  11. <PackageId>Apewer.Windows</PackageId>
  12. <RootNamespace>Apewer</RootNamespace>
  13. <Title>Apewer.Windows</Title>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\Apewer\Apewer.csproj" />
  17. </ItemGroup>
  18. <ItemGroup Condition="'$(TargetFramework)'=='netcoreapp3.1'">
  19. <FrameworkReference Include="Microsoft.WindowsDesktop.App" />
  20. </ItemGroup>
  21. <!-- .NET Framework 4.6.1 -->
  22. <ItemGroup Condition="'$(TargetFramework)'=='net461'">
  23. <Reference Include="CustomMarshalers" />
  24. <Reference Include="Microsoft.CSharp" />
  25. <Reference Include="PresentationCore" />
  26. <Reference Include="System.Core" />
  27. <Reference Include="System.Configuration" />
  28. <Reference Include="System.Design" />
  29. <Reference Include="System.Drawing" />
  30. <Reference Include="System.Management" />
  31. <Reference Include="System.Runtime.Caching" />
  32. <Reference Include="System.Security" />
  33. <Reference Include="System.Speech" />
  34. <Reference Include="System.Transactions" />
  35. <Reference Include="System.Web" />
  36. <Reference Include="System.Windows.Forms" />
  37. <Reference Include="WindowsBase" />
  38. </ItemGroup>
  39. <!-- .NET Framework 4.0 -->
  40. <ItemGroup Condition="'$(TargetFramework)'=='net40'">
  41. <Reference Include="CustomMarshalers" />
  42. <Reference Include="Microsoft.CSharp" />
  43. <Reference Include="PresentationCore" />
  44. <Reference Include="System.Core" />
  45. <Reference Include="System.Configuration" />
  46. <Reference Include="System.Design" />
  47. <Reference Include="System.Drawing" />
  48. <Reference Include="System.Management" />
  49. <Reference Include="System.Runtime.Caching" />
  50. <Reference Include="System.Security" />
  51. <Reference Include="System.Speech" />
  52. <Reference Include="System.Transactions" />
  53. <Reference Include="System.Web" />
  54. <Reference Include="System.Windows.Forms" />
  55. <Reference Include="WindowsBase" />
  56. </ItemGroup>
  57. <!-- .NET Framework 2.0 -->
  58. <ItemGroup Condition="'$(TargetFramework)'=='net20'">
  59. <Reference Include="CustomMarshalers" />
  60. <Reference Include="System.Configuration" />
  61. <Reference Include="System.Design" />
  62. <Reference Include="System.Management" />
  63. <Reference Include="System.Security" />
  64. <Reference Include="System.Transactions" />
  65. <Reference Include="System.Web" />
  66. <Reference Include="System.Windows.Forms" />
  67. </ItemGroup>
  68. </Project>