Horizon

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ HEAD  →  ?path2? @ 1
/Configuration/Configuration.cs
@@ -1,5 +1,4 @@
using System.ComponentModel;
using System.IO;
using System.Runtime.CompilerServices;
using System.Xml.Serialization;
using Configuration.Annotations;
@@ -19,40 +18,6 @@
 
private bool _showBalloonTooltips = true;
 
private bool _networkSharing = false;
 
private NotifyFilters _notifyFilters = NotifyFilters.LastWrite | NotifyFilters.Attributes;
 
public NotifyFilters NotifyFilters
{
get => _notifyFilters;
set
{
if (value == _notifyFilters)
{
return;
}
 
_notifyFilters = value;
OnPropertyChanged();
}
}
 
public bool NetworkSharing
{
get => _networkSharing;
set
{
if (value == _networkSharing)
{
return;
}
 
_networkSharing = value;
OnPropertyChanged();
}
}
 
public bool ShowBalloonTooltips
{
get => _showBalloonTooltips;
/Configuration/Configuration.csproj
@@ -21,7 +21,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>8</LangVersion>
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
@@ -30,7 +30,7 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>8</LangVersion>
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />