Skip to content

Commit

Permalink
Fix dumb Inheritance mistake with vars
Browse files Browse the repository at this point in the history
  • Loading branch information
TriggerAu committed Jan 12, 2018
1 parent b65d564 commit d227c34
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 14 deletions.
4 changes: 2 additions & 2 deletions VSToolsForKSP/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// 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.0.5.0")]
[assembly: AssemblyFileVersion("2.0.5.0")]
[assembly: AssemblyVersion("2.0.6.0")]
[assembly: AssemblyFileVersion("2.0.6.0")]
4 changes: 0 additions & 4 deletions VSToolsForKSP/Refactoring/LocalizerFormatRefactoring.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,6 @@ public sealed override async Task ComputeRefactoringsAsync(CodeRefactoringContex
context.RegisterRefactoring(action);
}

private ProjectDetails currentProject;

private string newIDKey = "";
private string newValue = "";
private async Task<Document> ReplaceStringWithLocalizerFormat(Document document, LiteralExpressionSyntax litDecl, CancellationToken cancellationToken)
{
try
Expand Down
6 changes: 3 additions & 3 deletions VSToolsForKSP/Refactoring/RefactoringCodeProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ namespace VSToolsForKSP.Refactoring
{
internal abstract class RefactoringCodeProvider : CodeRefactoringProvider
{
private ProjectDetails currentProject;
protected ProjectDetails currentProject;

private string newIDKey = "";
private string newValue = "";
protected string newIDKey = "";
protected string newValue = "";

#region Common Methods
/// <summary>
Expand Down
4 changes: 0 additions & 4 deletions VSToolsForKSP/Refactoring/StringRefactoring.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,6 @@ public sealed override async Task ComputeRefactoringsAsync(CodeRefactoringContex
context.RegisterRefactoring(action);
}

private ProjectDetails currentProject;

private string newIDKey = "";
private string newValue = "";
private async Task<Document> ReplaceStringWithAutoLOC(Document document, LiteralExpressionSyntax litDecl, CancellationToken cancellationToken)
{
try
Expand Down
2 changes: 1 addition & 1 deletion VSToolsForKSP/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="VSToolsForKSP.David Tregoning.09061f8a-f2aa-4230-b5ee-4db6a87d96f5" Version="2.0.5" Language="en-US" Publisher="David Tregoning" />
<Identity Id="VSToolsForKSP.David Tregoning.09061f8a-f2aa-4230-b5ee-4db6a87d96f5" Version="2.0.6" Language="en-US" Publisher="David Tregoning" />
<DisplayName>Visual Studio Tools for KSP</DisplayName>
<Description xml:space="preserve">Visual Studio Tools for KSP Development</Description>
<MoreInfo>https://github.com/TriggerAu/VSToolsForKSP</MoreInfo>
Expand Down

0 comments on commit d227c34

Please sign in to comment.