Skip to content

Commit 6cca464

Browse files
Add version
1 parent 49cddc8 commit 6cca464

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Vsix/VisualStudioInteraction.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ internal static class VisualStudioInteraction
3434
{
3535
private static DTE2 m_Dte;
3636

37-
/// <remarks>All calls and usages must from from the main thread</remarks>>
38-
internal static DTE2 Dte => m_Dte ?? (m_Dte = Package.GetGlobalService(typeof(DTE)) as DTE2);
37+
/// <remarks>All calls and usages must be from the main thread</remarks>>
38+
internal static DTE2 Dte => m_Dte ??= Package.GetGlobalService(typeof(DTE)) as DTE2;
3939

4040
private static CancellationToken CancelAllToken;
4141
private static readonly Version m_LowestSupportedVersion = new Version(15, 7, 0, 0);
4242
private static readonly Version m_FullVsVersion = GetFullVsVersion();
43-
private static readonly string m_Title = "Code converter " + new AssemblyName(typeof(CodeConversion).Assembly.FullName).Version.ToString(3) + " - Visual Studio " + m_FullVsVersion;
43+
private static readonly string m_Title = "Code converter " + new AssemblyName(typeof(ProjectConversion).Assembly.FullName).Version.ToString(3) + " - Visual Studio " + m_FullVsVersion;
4444

4545
private static Version GetFullVsVersion()
4646
{

Vsix/Vsix.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
<SchemaVersion>2.0</SchemaVersion>
99
<RootNamespace>ICSharpCode.CodeConverter.VsExtension</RootNamespace>
1010
<AssemblyName>ICSharpCode.CodeConverter.VsExtension</AssemblyName>
11+
<AssemblyVersion>8.1.3.0</AssemblyVersion>
12+
<FileVersion>8.1.3.0</FileVersion>
1113
<ProjectGuid>{99498EF8-C9E0-433B-8D7B-EA8E9E66F0C7}</ProjectGuid>
1214
<ProjectTypeGuids>{82B43B9B-A64C-4715-B499-D71E9CA2BD60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1315
<OutputType>Library</OutputType>

0 commit comments

Comments
 (0)