Skip to content
This repository was archived by the owner on Dec 22, 2023. It is now read-only.

Commit e1256bf

Browse files
committed
3.4.0 Release.
1 parent dbd4fc3 commit e1256bf

File tree

5 files changed

+36
-13
lines changed

5 files changed

+36
-13
lines changed

ScintillaNET.Signed.nuspec

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>jacobslusser.ScintillaNET.Signed</id>
5+
<version>3.4.0</version>
6+
<title>ScintillaNET Source Editing Component - Signed</title>
7+
<authors>Jacob Slusser</authors>
8+
<owners>Jacob Slusser</owners>
9+
<projectUrl>https://github.com/jacobslusser/ScintillaNET</projectUrl>
10+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
11+
<description>A Windows Forms control, wrapper, and bindings for the Scintilla text editor.</description>
12+
<releaseNotes>Please visit https://github.com/jacobslusser/ScintillaNET/releases to view the release notes.</releaseNotes>
13+
<summary>Everything you need to use Scintilla in your Windows Forms project.</summary>
14+
<copyright>Copyright (c) 2015, Jacob Slusser. All rights reserved.</copyright>
15+
<language>en-US</language>
16+
<tags>ScintillaNET Scintilla Editor</tags>
17+
</metadata>
18+
<files>
19+
<file src="ScintillaNET\bin\Signed\*.dll" target="lib\net40\" />
20+
<file src="ScintillaNET\bin\Signed\*.xml" target="lib\net40\" />
21+
</files>
22+
</package>

ScintillaNET.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>jacobslusser.ScintillaNET</id>
5-
<version>3.5.0-rc</version>
5+
<version>3.4.0</version>
66
<title>ScintillaNET Source Editing Component</title>
77
<authors>Jacob Slusser</authors>
88
<owners>Jacob Slusser</owners>

ScintillaNET.sln

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,29 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 2013
4-
VisualStudioVersion = 12.0.30723.0
4+
VisualStudioVersion = 12.0.31101.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScintillaNET", "ScintillaNET\ScintillaNET.csproj", "{22AE2386-60F1-476E-9303-61CDB0AAC4CF}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B4B1240E-7C2D-43AA-B794-C41CCDE902AA}"
99
ProjectSection(SolutionItems) = preProject
1010
ScintillaNET.nuspec = ScintillaNET.nuspec
11+
ScintillaNET.Signed.nuspec = ScintillaNET.Signed.nuspec
1112
EndProjectSection
1213
EndProject
1314
Global
1415
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1516
Debug|Any CPU = Debug|Any CPU
1617
Release|Any CPU = Release|Any CPU
17-
ReleaseSigned|Any CPU = ReleaseSigned|Any CPU
18+
Signed|Any CPU = Signed|Any CPU
1819
EndGlobalSection
1920
GlobalSection(ProjectConfigurationPlatforms) = postSolution
2021
{22AE2386-60F1-476E-9303-61CDB0AAC4CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2122
{22AE2386-60F1-476E-9303-61CDB0AAC4CF}.Debug|Any CPU.Build.0 = Debug|Any CPU
2223
{22AE2386-60F1-476E-9303-61CDB0AAC4CF}.Release|Any CPU.ActiveCfg = Release|Any CPU
2324
{22AE2386-60F1-476E-9303-61CDB0AAC4CF}.Release|Any CPU.Build.0 = Release|Any CPU
24-
{22AE2386-60F1-476E-9303-61CDB0AAC4CF}.ReleaseSigned|Any CPU.ActiveCfg = ReleaseSigned|Any CPU
25-
{22AE2386-60F1-476E-9303-61CDB0AAC4CF}.ReleaseSigned|Any CPU.Build.0 = ReleaseSigned|Any CPU
25+
{22AE2386-60F1-476E-9303-61CDB0AAC4CF}.Signed|Any CPU.ActiveCfg = Signed|Any CPU
26+
{22AE2386-60F1-476E-9303-61CDB0AAC4CF}.Signed|Any CPU.Build.0 = Signed|Any CPU
2627
EndGlobalSection
2728
GlobalSection(SolutionProperties) = preSolution
2829
HideSolutionNode = FALSE

ScintillaNET/Properties/AssemblyInfo.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,11 @@
3535
// You can specify all the values or you can default the Build and Revision Numbers
3636
// by using the '*' as shown below:
3737
// [assembly: AssemblyVersion("1.0.*")]
38-
[assembly: AssemblyVersion("3.5.0.0")]
39-
[assembly: AssemblyFileVersion("3.5.0.0")]
40-
[assembly: AssemblyInformationalVersion("3.5.0-rc")]
38+
[assembly: AssemblyVersion("3.4.0.0")]
39+
[assembly: AssemblyFileVersion("3.4.0.0")]
40+
[assembly: AssemblyInformationalVersion("3.4.0")]
4141
[assembly: NeutralResourcesLanguageAttribute("en-US")]
4242

43+
#if (DEBUG)
4344
[assembly: InternalsVisibleToAttribute("ScintillaNET.Test")]
45+
#endif

ScintillaNET/ScintillaNET.csproj

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,16 @@
3434
<DocumentationFile>bin\Release\ScintillaNET.xml</DocumentationFile>
3535
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
3636
</PropertyGroup>
37-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseSigned|AnyCPU'">
38-
<OutputPath>bin\ReleaseSigned\</OutputPath>
37+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">
38+
<OutputPath>bin\Signed\</OutputPath>
3939
<DefineConstants>TRACE</DefineConstants>
4040
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
41-
<DocumentationFile>bin\ReleaseSigned\ScintillaNET.xml</DocumentationFile>
41+
<DocumentationFile>bin\Signed\ScintillaNET.xml</DocumentationFile>
4242
<Optimize>true</Optimize>
4343
<DebugType>pdbonly</DebugType>
4444
<SignAssembly>true</SignAssembly>
4545
<AssemblyOriginatorKeyFile>..\ScintillaNET.snk</AssemblyOriginatorKeyFile>
46-
<PlatformTarget>AnyCPU</PlatformTarget>
4746
<ErrorReport>prompt</ErrorReport>
48-
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
4947
</PropertyGroup>
5048
<ItemGroup>
5149
<Reference Include="System" />

0 commit comments

Comments
 (0)