Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"version": 1,
"isRoot": true,
"tools": {
"xrmcontext": {
"version": "4.0.0-beta.21",
"commands": [
"xrmcontext"
],
"rollForward": false
}
}
}
34 changes: 17 additions & 17 deletions AssemblyAnalyzer/Reader/LocalReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -226,22 +226,22 @@ private record CommandResult

private readonly Dictionary<string, WebresourceType> WebresourceTypeMap = new()
{
{ ".html", WebresourceType.WebpageHtml },
{ ".htm", WebresourceType.WebpageHtml },
{ ".css", WebresourceType.StyleSheetCss },
{ ".js", WebresourceType.ScriptJscript },
{ ".xml", WebresourceType.DataXml },
{ ".xaml", WebresourceType.DataXml },
{ ".xsd", WebresourceType.DataXml },
{ ".xsl", WebresourceType.StyleSheetXsl },
{ ".xslt", WebresourceType.StyleSheetXsl },
{ ".png", WebresourceType.PngFormat },
{ ".jpg", WebresourceType.JpgFormat },
{ ".jpeg", WebresourceType.JpgFormat },
{ ".gif", WebresourceType.GifFormat },
{ ".xap", WebresourceType.SilverlightXap },
{ ".ico", WebresourceType.IcoFormat },
{ ".svg", WebresourceType.VectorFormatSvg },
{ ".resx", WebresourceType.StringResx }
{ ".html", WebresourceType.HTML },
{ ".htm", WebresourceType.HTML },
{ ".css", WebresourceType.CSS },
{ ".js", WebresourceType.JS },
{ ".xml", WebresourceType.XML },
{ ".xaml", WebresourceType.XML },
{ ".xsd", WebresourceType.XML },
{ ".xsl", WebresourceType.XSL },
{ ".xslt", WebresourceType.XSL },
{ ".png", WebresourceType.PNG },
{ ".jpg", WebresourceType.JPG },
{ ".jpeg", WebresourceType.JPG },
{ ".gif", WebresourceType.GIF },
{ ".xap", WebresourceType.XAP },
{ ".ico", WebresourceType.ICO },
{ ".svg", WebresourceType.SVG },
{ ".resx", WebresourceType.RSX }
};
}
77 changes: 8 additions & 69 deletions Dataverse/Context/.editorconfig
Original file line number Diff line number Diff line change
@@ -1,72 +1,11 @@
# EditorConfig for auto-generated Dataverse context files
# This file provides a modern approach to suppressing nullable warnings
# specifically for auto-generated code

root = false

# Suppress nullable reference type warnings for generated code only
[*.cs]
# Suppress nullable reference type warnings for auto-generated Dataverse entities
# These are common in generated code and don't represent actual code quality issues

# CS8600: Converting null literal or possible null value to non-nullable type
dotnet_diagnostic.CS8600.severity = none

# CS8601: Possible null reference assignment
dotnet_diagnostic.CS8601.severity = none

# CS8602: Dereference of a possibly null reference
dotnet_diagnostic.CS8602.severity = none

# CS8603: Possible null reference return
dotnet_diagnostic.CS8603.severity = none

# CS8604: Possible null reference argument
dotnet_diagnostic.CS8604.severity = none

# CS8605: Unboxing a possibly null value
dotnet_diagnostic.CS8605.severity = none

# CS8618: Non-nullable field must contain a non-null value when exiting constructor
dotnet_diagnostic.CS8618.severity = none

# CS8619: Nullability of reference types in value doesn't match target type
dotnet_diagnostic.CS8619.severity = none

# CS8625: Cannot convert null literal to non-nullable reference type
dotnet_diagnostic.CS8625.severity = none

# CS8629: Nullable value type may be null
dotnet_diagnostic.CS8629.severity = none

# CS8631: The type cannot be used as type parameter in the generic type or method
dotnet_diagnostic.CS8631.severity = none

# CS8633: Nullability in constraints for type parameter doesn't match interface method
dotnet_diagnostic.CS8633.severity = none

# CS8634: The type cannot be used as type parameter in the generic type or method
dotnet_diagnostic.CS8634.severity = none

# CS8653: A default expression introduces a null value for a type parameter
dotnet_diagnostic.CS8653.severity = none

# CS8714: The type cannot be used as type parameter in the generic type or method
dotnet_diagnostic.CS8714.severity = none

# CS8765: Nullability of type of parameter doesn't match overridden member
dotnet_diagnostic.CS8765.severity = none

# CS8766: Nullability of reference types in return type doesn't match implemented member
dotnet_diagnostic.CS8766.severity = none

# CS8767: Nullability of reference types in type of parameter doesn't match implemented member
dotnet_diagnostic.CS8767.severity = none

# CS8769: Nullability of reference types in type of parameter doesn't match interface member
dotnet_diagnostic.CS8769.severity = none

# CS8777: Parameter must have a non-null value when exiting
dotnet_diagnostic.CS8777.severity = none

# CS8981: The type name only contains lower-cased ascii characters
dotnet_diagnostic.CS8981.severity = none
dotnet_diagnostic.CS8600.severity = none # Converting null literal or possible null value to non-nullable type
dotnet_diagnostic.CS8601.severity = none # Possible null reference assignment
dotnet_diagnostic.CS8602.severity = none # Dereference of a possibly null reference
dotnet_diagnostic.CS8603.severity = none # Possible null reference return
dotnet_diagnostic.CS8604.severity = none # Possible null reference argument
dotnet_diagnostic.CS8618.severity = none # Non-nullable field must contain a non-null value when exiting constructor
dotnet_diagnostic.CS8625.severity = none # Cannot convert null literal to non-nullable reference type
Loading