Skip to content

Commit 70af491

Browse files
committed
fixup! Target .NET 8
1 parent 9053179 commit 70af491

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

appveyor.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ version: 2.1.0.{build}
88
# version suffix, if any (e.g. '-RC1', '-beta' otherwise '')
99
environment:
1010
version_suffix: ''
11+
# Disable the .NET logo in the console output.
12+
DOTNET_NOLOGO: true
13+
# Disable the .NET first time experience to skip caching NuGet packages and speed up the build.
14+
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
15+
1116

1217
# Do not build on tags (GitHub and BitBucket)
1318
skip_tags: true

src/GitExtensions.PluginManager/PluginSettings.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ internal class PluginSettings : IEnumerable<ISetting>
1616
/// </summary>
1717
public static BoolSetting CloseInstancesProperty { get; } = new BoolSetting("CloseInstances", "Close all instances of Git Extensions before starting Plugin Manager", false);
1818

19-
private readonly ISettingsSource source;
19+
private readonly SettingsSource source;
2020

2121
/// <summary>
2222
/// Gets current value of <see cref="CloseInstancesProperty"/>.
2323
/// </summary>
2424
public bool CloseInstances => source.GetBool(CloseInstancesProperty.Name, CloseInstancesProperty.DefaultValue);
2525

26-
public PluginSettings(ISettingsSource source)
26+
public PluginSettings(SettingsSource source)
2727
{
2828
this.source = source ?? throw new ArgumentNullException(nameof(source));
2929
}

0 commit comments

Comments
 (0)