Skip to content

Commit

Permalink
Support VS Mac 17.5
Browse files Browse the repository at this point in the history
Build with .NET 7.0 to match VS Mac 17.5
Indicate VS Mac 17.5 is supported
Update addin version to 0.9
  • Loading branch information
mrward committed Feb 4, 2023
1 parent dbfde1c commit ce7d5fb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="MonoDevelop.References.props" />
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<RootNamespace>MonoDevelop.Templating</RootNamespace>
<AssemblyName>MonoDevelop.TemplateCreator</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
Expand Down
2 changes: 1 addition & 1 deletion src/MonoDevelop.TemplateCreator/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion ("0.8")]
[assembly: AssemblyVersion ("0.9")]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
Expand Down
6 changes: 3 additions & 3 deletions src/MonoDevelop.TemplateCreator/TemplateCreator.addin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
url = "https://github.com/mrward/monodevelop-template-creator-addin"
description = "Create project templates for Visual Studio for Mac"
category = "IDE extensions"
version = "0.8">
version = "0.9">

<Runtime>
<Import assembly="MonoDevelop.TemplateCreator.dll" />
Expand All @@ -18,8 +18,8 @@
</Runtime>

<Dependencies>
<Addin id="::MonoDevelop.Core" version="17.4" />
<Addin id="::MonoDevelop.Ide" version="17.4" />
<Addin id="::MonoDevelop.Core" version="17.5" />
<Addin id="::MonoDevelop.Ide" version="17.5" />
</Dependencies>

<Extension path="/MonoDevelop/Ide/Commands">
Expand Down

0 comments on commit ce7d5fb

Please sign in to comment.