feat: add msbuild props file type

This commit is contained in:
CJ van den Berg 2025-09-11 10:25:20 +02:00
parent a661b63a58
commit 821f5d03cd
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -403,6 +403,15 @@ pub const powershell = .{
.comment = "#", .comment = "#",
}; };
pub const props = .{
.description = "MSBuild Properties",
.icon = "",
.extensions = .{"Directory.Build.props"},
.comment = "<!--",
.highlights = "tree-sitter-xml/queries/xml/highlights.scm",
.parser = xml.parser,
};
pub const proto = .{ pub const proto = .{
.description = "protobuf (proto)", .description = "protobuf (proto)",
.extensions = .{"proto"}, .extensions = .{"proto"},