Skip to content

Commit bfda31f

Browse files
committed
Support VS Mac 17.5
Target NET 7.0 to match VS Mac 17.5 Indicate VS Mac 17.5 is supported Update addin version to 0.12
1 parent 65b853b commit bfda31f

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

src/Microsoft.VisualStudio.ProjectSystem.LogModel/Microsoft.VisualStudio.ProjectSystem.LogModel.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="..\Common.Build.props" />
33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net7.0</TargetFramework>
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
77
</PropertyGroup>

src/Microsoft.VisualStudio.ProjectSystem.LogModel/Properties/AssemblyInfo.cs

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

45-
[assembly: AssemblyVersion ("0.11")]
45+
[assembly: AssemblyVersion ("0.12")]
4646

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

src/Microsoft.VisualStudio.ProjectSystem.Tools/Microsoft.VisualStudio.ProjectSystem.Tools.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="..\Common.Build.props" />
33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net7.0</TargetFramework>
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
77
</PropertyGroup>

src/Microsoft.VisualStudio.ProjectSystem.Tools/Properties/AssemblyInfo.cs

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

45-
[assembly: AssemblyVersion ("0.11")]
45+
[assembly: AssemblyVersion ("0.12")]
4646

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

src/MonoDevelop.ProjectSystem.Tools/MonoDevelop.ProjectSystem.Tools.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Import Project="..\Common.Build.props" />
33
<Import Project="MonoDevelop.References.props" />
44
<PropertyGroup>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net7.0</TargetFramework>
66
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
77
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
88
<OutputPath>..\..\bin</OutputPath>

src/MonoDevelop.ProjectSystem.Tools/Properties/AddinInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
[assembly: Addin (
2929
"ProjectSystemTools",
3030
Namespace = "MonoDevelop",
31-
Version = "0.11",
31+
Version = "0.12",
3232
Category = "IDE extensions")]
3333

3434
[assembly: AddinName ("Project System Tools")]
3535
[assembly: AddinDescription ("Tools for working the project system")]
3636

37-
[assembly: AddinDependency ("Core", "17.3")]
38-
[assembly: AddinDependency ("Ide", "17.3")]
37+
[assembly: AddinDependency ("Core", "17.5")]
38+
[assembly: AddinDependency ("Ide", "17.5")]

src/MonoDevelop.ProjectSystem.Tools/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.11")]
52+
[assembly: AssemblyVersion ("0.12")]
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.

0 commit comments

Comments
 (0)