Added version constant so WebTooling can consume.

- Updated the VS for mac versions to 7.5.

#1918
This commit is contained in:
N. Taylor Mullen 2018-01-08 16:35:48 -08:00
parent 03dea86c4e
commit e2703fe5f6
3 changed files with 19 additions and 3 deletions

View File

@ -10,8 +10,8 @@
<Import assembly="Microsoft.VisualStudio.Mac.LanguageServices.Razor.dll" />
</Runtime>
<Dependencies>
<Addin id="::MonoDevelop.Core" version="7.4" />
<Addin id="::MonoDevelop.Ide" version="7.4" />
<Addin id="::MonoDevelop.Core" version="7.5" />
<Addin id="::MonoDevelop.Ide" version="7.5" />
</Dependencies>
<!-- MEF catalog -->

View File

@ -0,0 +1,10 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.VisualStudio.Mac.RazorAddin
{
public static class RazorAddin
{
public const string Version = "7.5";
}
}

View File

@ -11,7 +11,13 @@
<AddinBuildNumber Condition="'$(AddinBuildNumber)' == ''">$(BuildNumber)</AddinBuildNumber>
<!-- Properties for VS for Mac addin -->
<VSForMacVersion>7.0</VSForMacVersion>
<!--
When changing the VSForMacVersion you must also update the following locations:
1. tooling/Microsoft.VisualStudio.Mac.RazorAddin/RazorAddin.cs Version property
2. MonoDevelop.Core and MonoDevelop.Ide version properties in tooling\Microsoft.VisualStudio.Mac.RazorAddin\Properties\_Manifest.addin.xml
-->
<VSForMacVersion>7.5.0</VSForMacVersion>
<AddinVersion>$(VSForMacVersion).$(AddinBuildNumber)</AddinVersion>
</PropertyGroup>
</Project>