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.

78 lines
3.0 KiB

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