Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to dotnet 6 #67

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions LiteDB.Studio.sln
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29609.76
# Visual Studio Version 17
VisualStudioVersion = 17.2.32505.173
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LiteDB.Studio", "LiteDB.Studio\LiteDB.Studio.csproj", "{0002E0FF-C91F-4B8B-B29B-2A477E184408}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LiteDB.Studio", "LiteDB.Studio\LiteDB.Studio.csproj", "{2ED0BEA8-A4BB-4183-AD47-CCB0A2299EA4}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0002E0FF-C91F-4B8B-B29B-2A477E184408}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0002E0FF-C91F-4B8B-B29B-2A477E184408}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0002E0FF-C91F-4B8B-B29B-2A477E184408}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0002E0FF-C91F-4B8B-B29B-2A477E184408}.Release|Any CPU.Build.0 = Release|Any CPU
{2ED0BEA8-A4BB-4183-AD47-CCB0A2299EA4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2ED0BEA8-A4BB-4183-AD47-CCB0A2299EA4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2ED0BEA8-A4BB-4183-AD47-CCB0A2299EA4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2ED0BEA8-A4BB-4183-AD47-CCB0A2299EA4}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 1 addition & 1 deletion LiteDB.Studio/Forms/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public partial class MainForm : Form
private ConnectionString _connectionString = null;
private SqlCodeCompletion _codeCompletion;

public MainForm(string filename)
public MainForm(string? filename)
{
InitializeComponent();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

using ICSharpCode.TextEditor.Document;
using ICSharpCode.TextEditor.Util;
using Timer = System.Windows.Forms.Timer;

namespace ICSharpCode.TextEditor
{
Expand Down
429 changes: 62 additions & 367 deletions LiteDB.Studio/LiteDB.Studio.csproj

Large diffs are not rendered by default.

13 changes: 4 additions & 9 deletions LiteDB.Studio/Program.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using ICSharpCode.TextEditor.Util;

namespace LiteDB.Studio
{
static class Program
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
Expand All @@ -21,10 +16,10 @@ static void Main(string[] args)
Application.Run(new MainForm(args.Length == 0 ? null : args[0]));
}

private static void OnExit(object sender, EventArgs eventArgs)
private static void OnExit(object? sender, EventArgs eventArgs)
{
Application.ApplicationExit -= OnExit;
AppSettingsManager.PersistData();
}
}
}
}
8 changes: 0 additions & 8 deletions LiteDB.Studio/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,7 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("LiteDB.Studio")]
[assembly: AssemblyDescription("A GUI tool for LiteDB v5")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("LiteDB")]
[assembly: AssemblyProduct("LiteDB.Studio")]
[assembly: AssemblyCopyright("MIT")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("0002e0ff-c91f-4b8b-b29b-2a477e184408")]
[assembly: AssemblyVersion("1.0.2.0")]
[assembly: AssemblyFileVersion("1.0.2.0")]
10 changes: 5 additions & 5 deletions LiteDB.Studio/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 0 additions & 7 deletions LiteDB.Studio/packages.config

This file was deleted.