Skip to content

Commit 11d534a

Browse files
committed
1 parent c389170 commit 11d534a

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

Release notes.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
[url:Reviews|https://visualstudiogallery.msdn.microsoft.com/3b64e04c-e8de-4b97-8358-06c73a97cc68/view/Reviews]
44
[url:GitHub|https://github.com/tom-englert/ResXResourceManager/releases]
55

6+
1.0.0.87:
7+
* WI4746: Move To Resource dialog is empty.
8+
* WI6471, WI4722, WI4747: Add scripting module for automating resource tasks with PowerShell scripts.
69
1.0.0.86:
710
* WI4723: Background saving / on-demand saving. (Configurable via options tab)
811
* WI4740: Improved loading performance.

ResXManager.VSIX/ResXManager.VSIX.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@
132132
<CodeContractsSkipAnalysisIfCannotConnectToCache>False</CodeContractsSkipAnalysisIfCannotConnectToCache>
133133
<CodeContractsBeingOptimisticOnExternal>True</CodeContractsBeingOptimisticOnExternal>
134134
<CodeContractsInferEnsuresAutoProperties>True</CodeContractsInferEnsuresAutoProperties>
135+
<DeployExtension>False</DeployExtension>
135136
</PropertyGroup>
136137
<PropertyGroup>
137138
<SignAssembly>true</SignAssembly>
@@ -410,9 +411,9 @@
410411
</PropertyGroup>
411412
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
412413
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
413-
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\VSSDK\Microsoft.VsSDK.targets" Condition="false" />
414+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v14.0\VSSDK\Microsoft.VsSDK.targets" Condition="false" />
414415
<Target Name="AfterBuild" Condition=" '$(Configuration)' == 'Release' ">
415-
<MakeDir Directories="$(SolutionDir)Deploy"/>
416+
<MakeDir Directories="$(SolutionDir)Deploy" />
416417
<Copy SourceFiles="$(OutDir)ResXManager.VSIX.vsix" DestinationFolder="$(SolutionDir)Deploy" />
417418
</Target>
418419
</Project>

ResXManager.VSIX/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Identifier Id="43b35fe0-1f30-48de-887a-68256474202a">
44
<Name>ResXManager</Name>
55
<Author>tom-englert.de</Author>
6-
<Version>1.0.0.86</Version>
6+
<Version>1.0.0.87</Version>
77
<Description xml:space="preserve">Manage localization of all ResX-Based resources in one place. Shows all resources of a solution and let's you edit the strings and their localizations in a well-arranged data grid.</Description>
88
<Locale>1033</Locale>
99
<MoreInfoUrl>http://resxresourcemanager.codeplex.com/</MoreInfoUrl>

ResXManager/ResXManager.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
<SupportUrl>https://resxresourcemanager.codeplex.com</SupportUrl>
3535
<ProductName>ResX Resource Manager</ProductName>
3636
<PublisherName>tom-englert.de</PublisherName>
37-
<ApplicationRevision>86</ApplicationRevision>
38-
<ApplicationVersion>1.0.0.86</ApplicationVersion>
37+
<ApplicationRevision>87</ApplicationRevision>
38+
<ApplicationVersion>1.0.0.87</ApplicationVersion>
3939
<UseApplicationTrust>false</UseApplicationTrust>
4040
<PublishWizardCompleted>true</PublishWizardCompleted>
4141
<BootstrapperEnabled>true</BootstrapperEnabled>

ResXResourceManager.sln

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1010
Release notes.txt = Release notes.txt
1111
Resources.Designer.t4 = Resources.Designer.t4
1212
ResXResourceManager.sln.DotSettings = ResXResourceManager.sln.DotSettings
13+
ResXManager.VSIX\source.extension.vsixmanifest = ResXManager.VSIX\source.extension.vsixmanifest
14+
Version.cs = Version.cs
1315
EndProjectSection
1416
EndProject
1517
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResXManager.Model", "ResXManager.Model\ResXManager.Model.csproj", "{6AF977DB-2C9F-4D9C-8C2D-CFDDF7E022FC}"

Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
internal static class Product
77
{
8-
public const string Version = "1.0.0.86";
8+
public const string Version = "1.0.0.87";
99
}

0 commit comments

Comments
 (0)