Skip to content

Commit ce7d5fb

Browse files
committed
Support VS Mac 17.5
Build with .NET 7.0 to match VS Mac 17.5 Indicate VS Mac 17.5 is supported Update addin version to 0.9
1 parent dbfde1c commit ce7d5fb

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/MonoDevelop.TemplateCreator/MonoDevelop.TemplateCreator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<Import Project="MonoDevelop.References.props" />
33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net7.0</TargetFramework>
55
<RootNamespace>MonoDevelop.Templating</RootNamespace>
66
<AssemblyName>MonoDevelop.TemplateCreator</AssemblyName>
77
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>

src/MonoDevelop.TemplateCreator/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
5050
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
5151

52-
[assembly: AssemblyVersion ("0.8")]
52+
[assembly: AssemblyVersion ("0.9")]
5353

5454
// The following attributes are used to specify the signing key for the assembly,
5555
// if desired. See the Mono documentation for more information about signing.

src/MonoDevelop.TemplateCreator/TemplateCreator.addin.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
url = "https://github.com/mrward/monodevelop-template-creator-addin"
88
description = "Create project templates for Visual Studio for Mac"
99
category = "IDE extensions"
10-
version = "0.8">
10+
version = "0.9">
1111

1212
<Runtime>
1313
<Import assembly="MonoDevelop.TemplateCreator.dll" />
@@ -18,8 +18,8 @@
1818
</Runtime>
1919

2020
<Dependencies>
21-
<Addin id="::MonoDevelop.Core" version="17.4" />
22-
<Addin id="::MonoDevelop.Ide" version="17.4" />
21+
<Addin id="::MonoDevelop.Core" version="17.5" />
22+
<Addin id="::MonoDevelop.Ide" version="17.5" />
2323
</Dependencies>
2424

2525
<Extension path="/MonoDevelop/Ide/Commands">

0 commit comments

Comments
 (0)