Skip to content

Commit 0a24fa1

Browse files
committed
Add launchsettings files matching the shell scripts
1 parent 3ff9f2a commit 0a24fa1

File tree

7 files changed

+46
-8
lines changed

7 files changed

+46
-8
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,3 @@ test-grammar/
360360

361361
# don't checkin jar files:
362362
*.jar
363-
364-
# don't checkin launchSettings:
365-
**/launchSettings.json
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"profiles": {
3+
"ExampleExtractor": {
4+
"commandName": "Project",
5+
"commandLineArgs": "../standard example-templates tmp",
6+
"workingDirectory": "$(SolutionDir)"
7+
}
8+
}
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"profiles": {
3+
"ExampleFormatter": {
4+
"commandName": "Project",
5+
"commandLineArgs": "../standard",
6+
"workingDirectory": "$(SolutionDir)"
7+
}
8+
}
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"profiles": {
3+
"ExampleTester": {
4+
"commandName": "Project",
5+
"commandLineArgs": "tmp",
6+
"workingDirectory": "$(SolutionDir)"
7+
}
8+
}
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"profiles": {
3+
"MarkdownConverter": {
4+
"commandName": "Project",
5+
"commandLineArgs": "../standard/*.md MarkdownConverter/template.docx -o tmp/standard.docx",
6+
"workingDirectory": "$(SolutionDir)"
7+
}
8+
}
9+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"profiles": {
3+
"StandardAnchorTags": {
4+
"commandName": "Project",
5+
"commandLineArgs": "--owner dotnet --repo csharpstandard",
6+
"workingDirectory": "$(SolutionDir)"
7+
}
8+
}
9+
}

tools/StandardAnchorTags/StandardAnchorTags.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
@@ -7,10 +7,6 @@
77
<ImplicitUsings>enable</ImplicitUsings>
88
</PropertyGroup>
99

10-
<ItemGroup>
11-
<Folder Include="Properties\" />
12-
</ItemGroup>
13-
1410
<ItemGroup>
1511
<PackageReference Include="System.CommandLine.DragonFruit" Version="0.4.0-alpha.22272.1" />
1612
</ItemGroup>

0 commit comments

Comments
 (0)