Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build with net7.0 #261

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,4 @@ Generated_Code #added for RIA/Silverlight projects
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
/.vs/FastColoredTextBox
112 changes: 34 additions & 78 deletions FastColoredTextBox/FastColoredTextBox.csproj
Original file line number Diff line number Diff line change
@@ -1,148 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{6DD14A85-CCFC-4774-BD26-0F5772512319}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>FastColoredTextBoxNS</RootNamespace>
<AssemblyName>FastColoredTextBox</AssemblyName>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<TargetFrameworks>net7.0-windows</TargetFrameworks>
<AssemblyTitle>FastColoredTextBox</AssemblyTitle>
<Company>Pavel Torgashov</Company>
<Product>FastColoredTextBox</Product>
<Description>Fast сolored textbox control</Description>
<Copyright>© Pavel Torgashov, 2011-2016, [email protected].</Copyright>
<AssemblyVersion>2.16.27.0</AssemblyVersion>
<FileVersion>2.16.26.0</FileVersion>
<VersionPrefix>$(AssemblyVersion)</VersionPrefix>
<OutputPath>bin\$(Configuration)\</OutputPath>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Debug\FastColoredTextBox.XML</DocumentationFile>
<DocumentationFile>bin\$(Configuration)\FastColoredTextBox.XML</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>FCTB_key.snk</AssemblyOriginatorKeyFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>$(AssemblyName)-net7</PackageId>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Design" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.XML" />
</ItemGroup>
<ItemGroup>
<Compile Include="AutocompleteItem.cs" />
<Compile Include="AutocompleteMenu.cs">
<Compile Update="AutocompleteMenu.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="Bookmarks.cs" />
<Compile Include="Char.cs" />
<Compile Include="DocumentMap.cs">
<Compile Update="DocumentMap.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="EncodingDetector.cs" />
<Compile Include="ExportToHTML.cs" />
<Compile Include="ExportToRTF.cs" />
<Compile Include="GoToForm.cs">
<Compile Update="GoToForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="GoToForm.Designer.cs">
<Compile Update="GoToForm.Designer.cs">
<DependentUpon>GoToForm.cs</DependentUpon>
</Compile>
<Compile Include="Hints.cs" />
<Compile Include="HotkeysEditorForm.cs">
<Compile Update="HotkeysEditorForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="HotkeysEditorForm.Designer.cs">
<Compile Update="HotkeysEditorForm.Designer.cs">
<DependentUpon>HotkeysEditorForm.cs</DependentUpon>
</Compile>
<Compile Include="LineNumberFormatting.cs" />
<Compile Include="LinesAccessor.cs" />
<Compile Include="MacrosManager.cs" />
<Compile Include="PlatformType.cs" />
<Compile Include="Hotkeys.cs" />
<Compile Include="Ruler.cs">
<Compile Update="Ruler.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Ruler.Designer.cs">
<Compile Update="Ruler.Designer.cs">
<DependentUpon>Ruler.cs</DependentUpon>
</Compile>
<Compile Include="SyntaxDescriptor.cs" />
<Compile Include="SyntaxHighlighter.cs" />
<Compile Include="ReplaceForm.cs">
<Compile Update="ReplaceForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="ReplaceForm.Designer.cs">
<Compile Update="ReplaceForm.Designer.cs">
<DependentUpon>ReplaceForm.cs</DependentUpon>
</Compile>
<Compile Include="FastColoredTextBox.cs">
<Compile Update="FastColoredTextBox.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="CommandManager.cs" />
<Compile Include="Commands.cs" />
<Compile Include="FindForm.cs">
<Compile Update="FindForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="FindForm.Designer.cs">
<Compile Update="FindForm.Designer.cs">
<DependentUpon>FindForm.cs</DependentUpon>
</Compile>
<Compile Include="LimitedStack.cs" />
<Compile Include="Line.cs" />
<Compile Include="Place.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Range.cs" />
<Compile Include="Style.cs" />
<Compile Include="TextSource.cs" />
<Compile Include="TypeDescriptor.cs" />
<Compile Include="FileTextSource.cs" />
<Compile Include="UnfocusablePanel.cs">
<Compile Update="UnfocusablePanel.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="VisualMarker.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="FastColoredTextBox.resx">
<EmbeddedResource Update="FastColoredTextBox.resx">
<DependentUpon>FastColoredTextBox.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="FindForm.resx">
<EmbeddedResource Update="FindForm.resx">
<DependentUpon>FindForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="GoToForm.resx">
<EmbeddedResource Update="GoToForm.resx">
<DependentUpon>GoToForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="HotkeysEditorForm.resx">
<EmbeddedResource Update="HotkeysEditorForm.resx">
<DependentUpon>HotkeysEditorForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="ReplaceForm.resx">
<EmbeddedResource Update="ReplaceForm.resx">
<DependentUpon>ReplaceForm.cs</DependentUpon>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="FCTB_key.snk" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
25 changes: 0 additions & 25 deletions FastColoredTextBox/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,11 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("FastColoredTextBox")]
[assembly: AssemblyDescription("Fast сolored textbox control")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Pavel Torgashov")]
[assembly: AssemblyProduct("FastColoredTextBox")]
[assembly: AssemblyCopyright("© Pavel Torgashov, 2011-2016, [email protected].")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("95be11b3-45bc-4512-be26-a860a78bd1f1")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.16.26.0")]
[assembly: AssemblyFileVersion("2.16.26.0")]