-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not use underscores in the ApplicationId (#19377)
* Do not use underscores in the ApplicationId Underscores are not supported on Windows * Update DotnetInternal.cs
- Loading branch information
1 parent
55ad2d8
commit e9029d0
Showing
3 changed files
with
38 additions
and
2 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 |
---|---|---|
|
@@ -94,7 +94,7 @@ | |
"steps": [ | ||
{ | ||
"regex": "[^a-z0-9_\\.]", | ||
"replacement": "_" | ||
"replacement": "" | ||
} | ||
] | ||
} | ||
|
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 |
---|---|---|
|
@@ -98,7 +98,7 @@ | |
"steps": [ | ||
{ | ||
"regex": "[^a-z0-9_\\.]", | ||
"replacement": "_" | ||
"replacement": "" | ||
} | ||
] | ||
} | ||
|
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