Make warnings go away
This commit is contained in:
parent
8c0693f308
commit
7eb7071c1d
|
@ -395,7 +395,6 @@ Dispatcher == null
|
|||
/// <summary>
|
||||
/// Gets the current library features.
|
||||
/// </summary>
|
||||
[CLSCompliant(false)]
|
||||
public static LibraryFeature CurrentLibraryFeatures
|
||||
{
|
||||
get
|
||||
|
@ -581,7 +580,6 @@ Dispatcher == null
|
|||
/// <summary>
|
||||
/// Gets or sets index of the file in the archive file table.
|
||||
/// </summary>
|
||||
[CLSCompliant(false)]
|
||||
public int Index { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
@ -607,19 +605,16 @@ Dispatcher == null
|
|||
/// <summary>
|
||||
/// Gets or sets size of the file (unpacked).
|
||||
/// </summary>
|
||||
[CLSCompliant(false)]
|
||||
public ulong Size { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets CRC checksum of the file.
|
||||
/// </summary>
|
||||
[CLSCompliant(false)]
|
||||
public uint Crc { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets file attributes.
|
||||
/// </summary>
|
||||
[CLSCompliant(false)]
|
||||
public uint Attributes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
|
|
@ -156,7 +156,6 @@ namespace SevenZip
|
|||
/// Initializes a new instance of the OpenEventArgs class
|
||||
/// </summary>
|
||||
/// <param name="totalSize">Size of unpacked archive data</param>
|
||||
[CLSCompliant(false)]
|
||||
public OpenEventArgs(ulong totalSize)
|
||||
{
|
||||
_totalSize = totalSize;
|
||||
|
@ -165,7 +164,6 @@ namespace SevenZip
|
|||
/// <summary>
|
||||
/// Gets the size of unpacked archive data
|
||||
/// </summary>
|
||||
[CLSCompliant(false)]
|
||||
public ulong TotalSize
|
||||
{
|
||||
get
|
||||
|
|
|
@ -22,7 +22,6 @@ namespace SevenZip
|
|||
/// The set of features supported by the library.
|
||||
/// </summary>
|
||||
[Flags]
|
||||
[CLSCompliant(false)]
|
||||
public enum LibraryFeature : uint
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -331,7 +331,6 @@ namespace SevenZip
|
|||
/// <summary>
|
||||
/// Gets the number of files in the archive
|
||||
/// </summary>
|
||||
[CLSCompliant(false)]
|
||||
public uint FilesCount
|
||||
{
|
||||
get
|
||||
|
|
|
@ -4,6 +4,8 @@ using System.Reflection;
|
|||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Serialization;
|
||||
|
||||
#pragma warning disable 618
|
||||
|
||||
namespace BizHawk.Client.Common
|
||||
{
|
||||
public static class ConfigService
|
||||
|
|
Loading…
Reference in New Issue