Skip to content

Commit

Permalink
V 1.0.0.87
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-englert committed Sep 17, 2016
1 parent c389170 commit 11d534a
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
3 changes: 3 additions & 0 deletions Release notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
[url:Reviews|https://visualstudiogallery.msdn.microsoft.com/3b64e04c-e8de-4b97-8358-06c73a97cc68/view/Reviews]
[url:GitHub|https://github.com/tom-englert/ResXResourceManager/releases]

1.0.0.87:
* WI4746: Move To Resource dialog is empty.
* WI6471, WI4722, WI4747: Add scripting module for automating resource tasks with PowerShell scripts.
1.0.0.86:
* WI4723: Background saving / on-demand saving. (Configurable via options tab)
* WI4740: Improved loading performance.
Expand Down
5 changes: 3 additions & 2 deletions ResXManager.VSIX/ResXManager.VSIX.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@
<CodeContractsSkipAnalysisIfCannotConnectToCache>False</CodeContractsSkipAnalysisIfCannotConnectToCache>
<CodeContractsBeingOptimisticOnExternal>True</CodeContractsBeingOptimisticOnExternal>
<CodeContractsInferEnsuresAutoProperties>True</CodeContractsInferEnsuresAutoProperties>
<DeployExtension>False</DeployExtension>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
Expand Down Expand Up @@ -410,9 +411,9 @@
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\VSSDK\Microsoft.VsSDK.targets" Condition="false" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v14.0\VSSDK\Microsoft.VsSDK.targets" Condition="false" />
<Target Name="AfterBuild" Condition=" '$(Configuration)' == 'Release' ">
<MakeDir Directories="$(SolutionDir)Deploy"/>
<MakeDir Directories="$(SolutionDir)Deploy" />
<Copy SourceFiles="$(OutDir)ResXManager.VSIX.vsix" DestinationFolder="$(SolutionDir)Deploy" />
</Target>
</Project>
2 changes: 1 addition & 1 deletion ResXManager.VSIX/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Identifier Id="43b35fe0-1f30-48de-887a-68256474202a">
<Name>ResXManager</Name>
<Author>tom-englert.de</Author>
<Version>1.0.0.86</Version>
<Version>1.0.0.87</Version>
<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>
<Locale>1033</Locale>
<MoreInfoUrl>http://resxresourcemanager.codeplex.com/</MoreInfoUrl>
Expand Down
4 changes: 2 additions & 2 deletions ResXManager/ResXManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
<SupportUrl>https://resxresourcemanager.codeplex.com</SupportUrl>
<ProductName>ResX Resource Manager</ProductName>
<PublisherName>tom-englert.de</PublisherName>
<ApplicationRevision>86</ApplicationRevision>
<ApplicationVersion>1.0.0.86</ApplicationVersion>
<ApplicationRevision>87</ApplicationRevision>
<ApplicationVersion>1.0.0.87</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
Expand Down
2 changes: 2 additions & 0 deletions ResXResourceManager.sln
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
Release notes.txt = Release notes.txt
Resources.Designer.t4 = Resources.Designer.t4
ResXResourceManager.sln.DotSettings = ResXResourceManager.sln.DotSettings
ResXManager.VSIX\source.extension.vsixmanifest = ResXManager.VSIX\source.extension.vsixmanifest
Version.cs = Version.cs
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ResXManager.Model", "ResXManager.Model\ResXManager.Model.csproj", "{6AF977DB-2C9F-4D9C-8C2D-CFDDF7E022FC}"
Expand Down
2 changes: 1 addition & 1 deletion Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@

internal static class Product
{
public const string Version = "1.0.0.86";
public const string Version = "1.0.0.87";
}

0 comments on commit 11d534a

Please sign in to comment.