-
Notifications
You must be signed in to change notification settings - Fork 496
Expand file tree
/
Copy pathICSharpCode.AvalonEdit.csproj
More file actions
75 lines (72 loc) · 3.32 KB
/
ICSharpCode.AvalonEdit.csproj
File metadata and controls
75 lines (72 loc) · 3.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net6.0-windows;netcoreapp3.1;net472</TargetFrameworks>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<DefineConstants>TRACE</DefineConstants>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>ICSharpCode.AvalonEdit.snk</AssemblyOriginatorKeyFile>
<Company>ic#code</Company>
<Copyright>2000-2022 AlphaSierraPapa for the SharpDevelop Team</Copyright>
<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>
<Version>6.1</Version>
<AssemblyVersion>6.1.0.0</AssemblyVersion>
<FileVersion>6.1.0.0</FileVersion>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<PackageId>AvalonEdit</PackageId>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RepositoryUrl>https://github.com/icsharpcode/AvalonEdit.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Authors>AvalonEdit Contributors</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>http://www.avalonedit.net</PackageProjectUrl>
<PackageIcon>images\AvalonEditNuGetPackageIcon.png</PackageIcon>
<PackageTags>WPF Text Editor SharpDevelop AvalonEdit</PackageTags>
<PackageReleaseNotes>Changes are detailed at https://github.com/icsharpcode/AvalonEdit/blob/master/ChangeLog.md</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0-windows' ">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1' ">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net462' ">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' ">
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<None Remove="Search\next.png" />
<None Remove="Search\prev.png" />
<None Remove="themes\RightArrow.cur" />
<None Include="AvalonEditNuGetPackageIcon.png">
<Pack>True</Pack>
<PackagePath>images</PackagePath>
</None>
<Resource Include="Search\next.png" />
<Resource Include="Search\prev.png" />
<Resource Include="themes\RightArrow.cur" />
</ItemGroup>
<ItemGroup>
<None Remove="Highlighting\Resources\*" />
<EmbeddedResource Include="Highlighting\Resources\*" />
<EmbeddedResource Remove="Highlighting\Resources\Resources.cs" />
<Resource Include="Highlighting\Resources\Resources.cs" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Resource Include="Search\replacenext.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Search\replaceall.png" />
</ItemGroup>
</Project>