|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop"> |
2 | 2 | <PropertyGroup> |
3 | 3 | <OutputType>Library</OutputType> |
4 | | - <TargetFrameworks>net6.0-windows;netcoreapp3.1;net462</TargetFrameworks> |
| 4 | + <TargetFrameworks>net6.0-windows;net7.0-windows;net462</TargetFrameworks> |
5 | 5 | <UseWPF>true</UseWPF> |
6 | 6 | <UseWindowsForms>true</UseWindowsForms> |
7 | 7 | <DefineConstants>TRACE</DefineConstants> |
8 | 8 | <SignAssembly>true</SignAssembly> |
9 | 9 | <AssemblyOriginatorKeyFile>ICSharpCode.AvalonEdit.snk</AssemblyOriginatorKeyFile> |
10 | 10 | <Company>ic#code</Company> |
11 | 11 | <Copyright>2000-2022 AlphaSierraPapa for the SharpDevelop Team</Copyright> |
12 | | - <Description>AvalonEdit is the WPF-based text editor used in SharpDevelop. There are five builds of AvalonEdit included in this package: .NET Framework 4.5 and 4.0, .NET Core 3.1, .NET 5.0 for Windows, .NET 6.0 for Windows.</Description> |
| 12 | + <Description>AvalonEdit is the WPF-based text editor used in SharpDevelop.</Description> |
13 | 13 | <Version>6.2</Version> |
14 | 14 | <AssemblyVersion>6.2.0.0</AssemblyVersion> |
15 | 15 | <FileVersion>6.2.0.0</FileVersion> |
|
29 | 29 | <PackageIcon>images\AvalonEditNuGetPackageIcon.png</PackageIcon> |
30 | 30 | <PackageTags>WPF Text Editor SharpDevelop AvalonEdit</PackageTags> |
31 | 31 | <PackageReleaseNotes>Changes are detailed at https://github.com/icsharpcode/AvalonEdit/blob/master/ChangeLog.md</PackageReleaseNotes> |
| 32 | + <PackageReadmeFile>PackageReadme.md</PackageReadmeFile> |
| 33 | + </PropertyGroup> |
| 34 | + |
| 35 | + <ItemGroup> |
| 36 | + <None Include="docs\PackageReadme.md" Pack="true" PackagePath="\" /> |
| 37 | + </ItemGroup> |
| 38 | + |
| 39 | + <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
| 40 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
32 | 41 | </PropertyGroup> |
33 | 42 |
|
34 | 43 | <PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0-windows' "> |
35 | 44 | <DefineConstants>TRACE</DefineConstants> |
36 | 45 | </PropertyGroup> |
37 | | - <PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1' "> |
| 46 | + <PropertyGroup Condition=" '$(TargetFramework)' == 'net7.0-windows' "> |
38 | 47 | <DefineConstants>TRACE</DefineConstants> |
39 | 48 | </PropertyGroup> |
40 | 49 | <PropertyGroup Condition=" '$(TargetFramework)' == 'net462' "> |
41 | 50 | <DefineConstants>TRACE</DefineConstants> |
42 | 51 | </PropertyGroup> |
43 | | - |
| 52 | + |
44 | 53 | <ItemGroup Condition=" '$(TargetFramework)' == 'net462' "> |
45 | 54 | <Reference Include="System.Windows.Forms" /> |
46 | 55 | </ItemGroup> |
|
0 commit comments