Skip to content
Open
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"author": "Microsoft",
"name": "XML Solution File",
"description": "Create an empty XML solution (slnx) containing no projects"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"$schema": "http://json.schemastore.org/template",
"author": "Microsoft",
"classifications": [
"Solution"
],
"name": "XML Solution File",
"generatorVersions": "[1.0.0.0-*)",
"description": "Create an empty XML solution (slnx) containing no projects",
"groupIdentity": "ItemSolutionX",
"precedence": "102",
"identity": "Microsoft.Standard.QuickStarts.SolutionX",
"shortName": [
"slnx",
"solutionx"
],
"sourceName": "Solution1",
"defaultName": "Solution1"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<Solution>
</Solution>
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<Solution>
</Solution>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The template "%TEMPLATE_NAME%" was created successfully.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ razorclasslib
razorcomponent
sln
slnf
slnx
tool-manifest
view
viewimports
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ razorclasslib
razorcomponent
sln
slnf
slnx
tool-manifest
view
viewimports
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ razorclasslib
razorcomponent
sln
slnf
slnx
tool-manifest
view
viewimports
Expand Down
2 changes: 2 additions & 0 deletions test/dotnet-new.IntegrationTests/CommonTemplatesTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ public static void ClassInitialize(TestContext ctx)
[DataRow("Solution File", "sln", new[] { "--format", "sln" })]
[DataRow("Solution File", "sln", new[] { "--format", "slnx" })]
[DataRow("Solution File", "solution", null)]
[DataRow("XML Solution File", "slnx", null)]
[DataRow("XML Solution File", "solutionx", null)]
[DataRow("Solution Filter File", "slnf", new[] { "--parent-solution", "Parent.slnx" })]
[DataRow("Solution Filter File", "slnf", new[] { "-s", "Parent.slnx" })]
[DataRow("Solution Filter File", "solutionfilter", new[] { "--parent-solution", "Parent.slnx" })]
Expand Down
Loading