-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved code quality, fixed memory leaks, added new feactures
1) Code quality has been improved. 2) Some memory leaks has been fixed. 3) Updated WSE version to 4.7.7. 4) Update to .NET Framework v4.7.2.
- Loading branch information
Showing
68 changed files
with
1,519 additions
and
1,536 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[*.cs] | ||
|
||
# CA1060: Move pinvokes to native methods class | ||
dotnet_diagnostic.CA1060.severity = none | ||
|
||
# CA1806: Do not ignore method results | ||
dotnet_diagnostic.CA1806.severity = none | ||
|
||
# CA1822: Mark members as static | ||
dotnet_diagnostic.CA1822.severity = none | ||
|
||
# CA1031: Do not catch general exception types | ||
dotnet_diagnostic.CA1031.severity = none | ||
|
||
# CA1724: Type names should not match namespaces | ||
dotnet_diagnostic.CA1724.severity = none | ||
|
||
# CA1034: Nested types should not be visible | ||
dotnet_diagnostic.CA1034.severity = none | ||
|
||
# CA3075: Insecure DTD processing in XML | ||
dotnet_diagnostic.CA3075.severity = none | ||
|
||
# CA3075: Mark assemblies with NeutralResourcesLanguageAttribute | ||
dotnet_diagnostic.CA1824.severity = none | ||
|
||
# CA1303: Do not pass literals as localized parameters | ||
dotnet_diagnostic.CA1303.severity = none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" /> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/> | ||
</startup> | ||
</configuration> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.