Winify

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 43  →  ?path2? @ 44
/trunk/Configuration/Configuration.cs
@@ -9,6 +9,7 @@
public class Configuration : INotifyPropertyChanged
{
private bool _launchOnBoot;
private bool _ignoreSelfSignedCertificates;
 
public bool LaunchOnBoot
{
@@ -21,6 +22,17 @@
}
}
 
public bool IgnoreSelfSignedCertificates
{
get => _ignoreSelfSignedCertificates;
set
{
if (value == _ignoreSelfSignedCertificates) return;
_ignoreSelfSignedCertificates = value;
OnPropertyChanged();
}
}
 
public event PropertyChangedEventHandler PropertyChanged;
 
[NotifyPropertyChangedInvocator]
/trunk/Configuration/Configuration.csproj
@@ -21,7 +21,7 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<LangVersion>7.3</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>7.3</LangVersion>
<LangVersion>7.3</LangVersion>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
@@ -50,6 +50,7 @@
<ItemGroup>
<None Include="Configuration.xsd">
<SubType>Designer</SubType>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
/trunk/Configuration/Configuration.xsd
@@ -7,6 +7,7 @@
<xsd:complexType>
<xsd:sequence>
<xsd:element name="LaunchOnBoot" type="xsd:boolean" />
<xsd:element name="IgnoreSelfSignedCertificates" type="xsd:boolean" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>