aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/SideChains
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-06-11 10:23:24 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-06-11 10:23:24 +0300
commitb21d8e7c164b63d14d15cfdf3dda68ae88a03043 (patch)
treed4df5ec93d5cc3011766470183a8a43a96439405 /Software/Visual_Studio/SideChains
parent6323ea8d74be3440286acaf73cab98024a858499 (diff)
downloadTango-b21d8e7c164b63d14d15cfdf3dda68ae88a03043.tar.gz
Tango-b21d8e7c164b63d14d15cfdf3dda68ae88a03043.zip
Code cleanup for warnings.
Diffstat (limited to 'Software/Visual_Studio/SideChains')
-rw-r--r--Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/Icon.cs7
-rw-r--r--Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/IconType.cs7
-rw-r--r--Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/MaterialDesignThemes.Wpf.csproj2
-rw-r--r--Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/PackIcon.cs3
-rw-r--r--Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/PackIconKind.cs11
5 files changed, 1 insertions, 29 deletions
diff --git a/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/Icon.cs b/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/Icon.cs
index 5d270d8e5..987479ef5 100644
--- a/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/Icon.cs
+++ b/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/Icon.cs
@@ -3,13 +3,6 @@ using System.Windows.Controls;
namespace MaterialDesignThemes.Wpf
{
- /// <summary>
- /// Displays an icon image/path, according to the specified <see cref="Type"/> name.
- /// </summary>
- /// <remarks>
- /// All icons sourced from Material Design Icons Font - <see cref="https://materialdesignicons.com/"/> - in accordance of
- /// <see cref="https://github.com/Templarian/MaterialDesign/blob/master/license.txt"/>.
- /// </remarks>
public class Icon : Control
{
public static readonly DependencyProperty TypeProperty = DependencyProperty.Register(
diff --git a/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/IconType.cs b/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/IconType.cs
index b463ac51a..a75b6eb1b 100644
--- a/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/IconType.cs
+++ b/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/IconType.cs
@@ -1,12 +1,5 @@
namespace MaterialDesignThemes.Wpf
{
- /// <summary>
- /// List of available icons for use with <see cref="Icon"/>.
- /// </summary>
- /// <remarks>
- /// All icons sourced from Material Design Icons Font - <see cref="https://materialdesignicons.com/"/> - in accordance of
- /// <see cref="https://github.com/Templarian/MaterialDesign/blob/master/license.txt"/>.
- /// </remarks>
public enum IconType
{
AutoGeneratedDoNotAmend
diff --git a/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/MaterialDesignThemes.Wpf.csproj b/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/MaterialDesignThemes.Wpf.csproj
index 987ec47e3..12d19d44b 100644
--- a/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/MaterialDesignThemes.Wpf.csproj
+++ b/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/MaterialDesignThemes.Wpf.csproj
@@ -22,7 +22,7 @@
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
+ <WarningLevel>0</WarningLevel>
<DocumentationFile>bin\Debug\MaterialDesignThemes.Wpf.XML</DocumentationFile>
<NoWarn>CS1591;CS1574</NoWarn>
</PropertyGroup>
diff --git a/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/PackIcon.cs b/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/PackIcon.cs
index dc19938ca..bb8614df3 100644
--- a/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/PackIcon.cs
+++ b/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/PackIcon.cs
@@ -9,9 +9,6 @@ using ControlzEx;
namespace MaterialDesignThemes.Wpf
{
- /// <summary>
- /// Icon from the Material Design Icons project, <see cref="https://materialdesignicons.com/"/>.
- /// </summary>
public class PackIcon : PackIconBase<PackIconKind>
{
static PackIcon()
diff --git a/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/PackIconKind.cs b/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/PackIconKind.cs
index 61efc70af..a4aef302c 100644
--- a/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/PackIconKind.cs
+++ b/Software/Visual_Studio/SideChains/MaterialDesignInXamlToolkit-master/MaterialDesignThemes.Wpf/PackIconKind.cs
@@ -1,16 +1,5 @@
namespace MaterialDesignThemes.Wpf
{
- /// ******************************************
- /// This code is auto generated. Do not amend.
- /// ******************************************
-
- /// <summary>
- /// List of available icons for use with <see cref="PackIcon" />.
- /// </summary>
- /// <remarks>
- /// All icons sourced from Material Design Icons Font - <see cref="https://materialdesignicons.com/"/> - in accordance of
- /// <see cref="https://github.com/Templarian/MaterialDesign/blob/master/license.txt"/>.
- /// </remarks>
public enum PackIconKind
{
AccessPoint,