Skip to content

Commit

Permalink
Merge pull request #355 from jetelain/net60
Browse files Browse the repository at this point in the history
net 3.1 and net 5.0 reached EOL, change to net 6.0 and net 7.0
  • Loading branch information
tgjones authored Jul 30, 2023
2 parents 5ccd0b5 + 7bc695e commit 7836280
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Gemini.Demo/Gemini.Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>net5.0-windows;netcoreapp3.1;net462</TargetFrameworks>
<TargetFrameworks>net6.0-windows;net7.0-windows;net462</TargetFrameworks>
<UseWPF>true</UseWPF>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsPackable>false</IsPackable>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net5.0-windows;netcoreapp3.1;net462</TargetFrameworks>
<TargetFrameworks>net6.0-windows;net7.0-windows;net462</TargetFrameworks>
<PackageTags>core WPF MVVM AvalonDock Caliburn Micro Visual Studio IDE Shell C# compile Roslyn</PackageTags>
<Description>CodeCompiler module for Gemini, providing C# code compilation using Roslyn.</Description>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFrameworks>net5.0-windows;netcoreapp3.1;net462</TargetFrameworks>
<TargetFrameworks>net6.0-windows;net7.0-windows;net462</TargetFrameworks>
<UseWPF>true</UseWPF>
<PackageTags>core WPF MVVM AvalonDock Caliburn Micro Visual Studio IDE Shell C# syntax highlighting AvalonEdit</PackageTags>
<Description>CodeEditor module for Gemini, providing a syntax-highlighted code editor using AvalonEdit.</Description>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFrameworks>net5.0-windows;netcoreapp3.1;net462</TargetFrameworks>
<TargetFrameworks>net6.0-windows;net7.0-windows;net462</TargetFrameworks>
<UseWPF>true</UseWPF>
<PackageTags>core WPF MVVM AvalonDock Caliburn Micro Visual Studio IDE Shell error list</PackageTags>
<Description>ErrorList module for Gemini, providing a tool window to display messages, warnings and errors.</Description>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFrameworks>net5.0-windows;netcoreapp3.1;net462</TargetFrameworks>
<TargetFrameworks>net6.0-windows;net7.0-windows;net462</TargetFrameworks>
<UseWPF>true</UseWPF>
<PackageTags>core WPF MVVM AvalonDock Caliburn Micro Visual Studio IDE Shell graph node connector connection</PackageTags>
<Description>GraphEditor module for Gemini, providing UI controls to edit a graph of connected nodes.</Description>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFrameworks>net5.0-windows;netcoreapp3.1;net462</TargetFrameworks>
<TargetFrameworks>net6.0-windows;net7.0-windows;net462</TargetFrameworks>
<UseWPF>true</UseWPF>
<PackageTags>core WPF MVVM AvalonDock Caliburn Micro Visual Studio IDE Shell inspector</PackageTags>
<Description>Inspector module for Gemini, providing a flexible PropertyGrid-esque tool window.</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/Gemini.Modules.Output/Gemini.Modules.Output.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFrameworks>net5.0-windows;netcoreapp3.1;net462</TargetFrameworks>
<TargetFrameworks>net6.0-windows;net7.0-windows;net462</TargetFrameworks>
<UseWPF>true</UseWPF>
<PackageTags>core WPF MVVM AvalonDock Caliburn Micro Visual Studio IDE Shell Output</PackageTags>
<Description>Output module for Gemini, providing a buffered output tool pane.</Description>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFrameworks>net5.0-windows;netcoreapp3.1;net462</TargetFrameworks>
<TargetFrameworks>net6.0-windows;net7.0-windows;net462</TargetFrameworks>
<UseWPF>true</UseWPF>
<PackageTags>core WPF MVVM AvalonDock Caliburn Micro Visual Studio IDE Shell PropertyGrid</PackageTags>
<Description>PropertyGrid module for Gemini, utilising the PropertyGrid control from the Extended WPF Toolkit.</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/Gemini/Gemini.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFrameworks>net5.0-windows;netcoreapp3.1;net462</TargetFrameworks>
<TargetFrameworks>net6.0-windows;net7.0-windows;net462</TargetFrameworks>
<UseWPF>true</UseWPF>
<PackageId>GeminiWpf</PackageId>
<Title>Gemini</Title>
Expand Down

0 comments on commit 7836280

Please sign in to comment.